1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 08:21:34 +02:00
invoiceninja/app/Http/Requests/UpdateUserRequest.php
2017-01-30 21:40:43 +02:00

35 lines
686 B
PHP

<?php
namespace App\Http\Requests;
use Auth;
class UpdateUserRequest extends EntityRequest
{
// Expenses
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return Auth::user()->is_admin || $this->user()->id == Auth::user()->id;
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
'email' => 'email|required|unique:users,email,' . Auth::user()->id . ',id',
'first_name' => 'required',
'last_name' => 'required',
];
}
}