36 lines
647 B
PHP
36 lines
647 B
PHP
|
<?php
|
||
|
|
||
|
namespace App\Http\Requests;
|
||
|
|
||
|
use Illuminate\Foundation\Http\FormRequest;
|
||
|
use Illuminate\Support\Facades\Auth;
|
||
|
|
||
|
/**
|
||
|
* Editing Suppliers
|
||
|
*/
|
||
|
class CheckoutAddEdit extends FormRequest
|
||
|
{
|
||
|
/**
|
||
|
* Determine if the user is authorized to make this request.
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function authorize()
|
||
|
{
|
||
|
return Auth::user()->isWholesaler();
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* Get the validation rules that apply to the request.
|
||
|
*
|
||
|
* @return array<string, mixed>
|
||
|
*/
|
||
|
public function rules()
|
||
|
{
|
||
|
return [
|
||
|
'name' => 'required|string|min:2|max:255',
|
||
|
'active' => 'sometimes|accepted',
|
||
|
'description' => 'nullable|string|min:2|max:255',
|
||
|
];
|
||
|
}
|
||
|
}
|