for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Http\Requests;
use App\Models\User;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Validation\Rule;
class UserRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
return true;
// return auth()->user()->hasPermission('perms.super-admin');
}
* Get the validation rules that apply to the request.
* @return array
public function rules()
return [
'name' => [
'required', 'min:3',
],
'email' => [
'required', 'email', Rule::unique((new User())->getTable())->ignore($this->route()->user->id ?? null),
'required',
'password' => [
$this->route()->user ? 'nullable' : 'required', 'confirmed', 'min:6',
];