File: /home/richfield/public_html/rich/app/Http/Requests/ContactRequest.php
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ContactRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get the validation rules that apply to the request.
*
* @return array<string, mixed>
*/
public function rules()
{
return [
'name'=>'required',
'phone' =>'required|numeric',
'email' =>'required|email',
'subject'=>'required',
'comment'=>'required'
];
}
}