Skip to content

Instantly share code, notes, and snippets.

@Faizanq
Created July 27, 2022 06:12
Show Gist options
  • Save Faizanq/3d2b435b7c61fa37f28feb74ddef2daa to your computer and use it in GitHub Desktop.
Save Faizanq/3d2b435b7c61fa37f28feb74ddef2daa to your computer and use it in GitHub Desktop.
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class NewCustomerRequest 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
*/
public function rules()
{
return [
'email' => 'required|email',
'name' => 'required',
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment