Files
wticreatorstudio/Modules/Marketing/Http/Requests/UpdateFlashDealRequest.php
T
2024-02-12 22:54:20 -05:00

36 lines
754 B
PHP

<?php
namespace Modules\Marketing\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class UpdateFlashDealRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'title' => 'required|max:255',
'background_color' =>'required',
'text_color' =>'required',
'banner_image' =>'nullable|mimes:jpg,png,bmp,jpeg',
'date' =>'required',
'products' =>'required'
];
}
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
}