FleetCart/Modules/Attribute/Http/Requests/SaveAttributeSetRequest.php
2023-06-11 13:14:03 +01:00

28 lines
523 B
PHP

<?php
namespace Modules\Attribute\Http\Requests;
use Modules\Core\Http\Requests\Request;
class SaveAttributeSetRequest extends Request
{
/**
* Available attributes.
*
* @var string
*/
protected $availableAttributes = 'attribute::attributes.attribute_sets';
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => 'required',
];
}
}