MIF_E31222707/Modules/Quotation/Http/Requests/StoreQuotationRequest.php

39 lines
1002 B
PHP

<?php
namespace Modules\Quotation\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Gate;
class StoreQuotationRequest extends FormRequest
{
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'customer_id' => 'required|numeric',
'reference' => 'required|string|max:255',
'tax_percentage' => 'required|integer|min:0|max:100',
'discount_percentage' => 'required|integer|min:0|max:100',
'shipping_amount' => 'required|numeric',
'total_amount' => 'required|numeric',
'status' => 'required|string|max:255',
'note' => 'nullable|string|max:1000'
];
}
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return Gate::allows('create_quotations');
}
}