mirror of
https://github.com/Bigherollc/wticreatorstudio.git
synced 2026-07-28 23:17:58 -04:00
29 lines
678 B
PHP
29 lines
678 B
PHP
<?php
|
|
|
|
namespace Modules\GiftCard\Http\Requests;
|
|
|
|
use Illuminate\Foundation\Http\FormRequest;
|
|
|
|
class CreateGiftCardRequest extends FormRequest
|
|
{
|
|
|
|
public function rules()
|
|
{
|
|
return [
|
|
'name' => 'required|max:255',
|
|
'selling_price' => 'numeric|required',
|
|
'discount' => 'numeric|nullable',
|
|
'sku' => 'required|max:15|min:5|unique:gift_cards,sku',
|
|
'status' => 'required',
|
|
'thumbnail_image' => 'required|mimes:jpg,bmp,jpeg,png,webp',
|
|
'galary_image.*' => 'nullable|mimes:jpg,bmp,jpeg,png,webp'
|
|
];
|
|
}
|
|
|
|
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
}
|
|
}
|