23 lines
548 B
PHP
23 lines
548 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Api\V1\Brand;
|
|
|
|
use App\Models\Ecommerce\Product\Brand\Brand;
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
class BrandIndexRequest extends FormRequest
|
|
{
|
|
/**
|
|
* Get the validation rules that apply to the request.
|
|
*
|
|
* @return array<string, \Illuminate\Contracts\Validation\ValidationRule|array<mixed>|string>
|
|
*/
|
|
public function rules(): array
|
|
{
|
|
return [
|
|
'type' => ['nullable', 'string', Rule::in(Brand::types())],
|
|
];
|
|
}
|
|
}
|