mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-08-04 18:16:05 -04:00
36 lines
754 B
PHP
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;
|
|
}
|
|
}
|