FleetCart/app/Scaffold/Module/stubs/save-entity-request.stub
2023-06-11 13:14:03 +01:00

26 lines
482 B
Plaintext

<?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 [];
}
}