FleetCart/app/Scaffold/Module/stubs/save-entity-request.stub

26 lines
482 B
Plaintext
Raw Normal View History

2023-06-11 12:14:03 +00:00
<?php
namespace Modules\$MODULE_NAME$\Http\Requests;
use Modules\Core\Http\Requests\Request;
class Save$ENTITY_NAME$Request extends Request
{
/**
* Available attributes.
*
* @var string
*/
protected $availableAttributes = '$LOWERCASE_MODULE_NAME$::attributes';
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [];
}
}