<?php
namespace App\Http\Requests;
use App\Provider;
use Illuminate\Validation\Rule;
use Illuminate\Foundation\Http\FormRequest;
class ProviderRequest extends FormRequest
{
/**
* Determine if the provider is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return auth()->check();
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'name' => [
'required', 'min:3'
],
];
}
}