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