mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-13 06:32:40 +01:00
42 lines
717 B
PHP
42 lines
717 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\User;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\User;
|
|
|
|
class StoreUserRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
{
|
|
return auth()->user()->can('create', User::class);
|
|
}
|
|
|
|
public function rules()
|
|
{
|
|
return [
|
|
'first_name' => 'required|string|max:100',
|
|
'last_name' => 'required|string:max:100',
|
|
'email' => new UniqueUserRule(),
|
|
];
|
|
}
|
|
|
|
|
|
public function sanitize()
|
|
{
|
|
//do post processing of user request
|
|
}
|
|
|
|
public function messages()
|
|
{
|
|
|
|
}
|
|
|
|
|
|
} |