1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-21 08:51:34 +02:00
invoiceninja/app/Http/Requests/UpdateUserRequest.php

32 lines
659 B
PHP
Raw Normal View History

2016-05-01 13:31:10 +02:00
<?php namespace App\Http\Requests;
2016-02-04 21:35:28 +01:00
use Auth;
class UpdateUserRequest extends Request
{
// Expenses
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
2016-05-02 15:12:37 +02:00
return $this->user()->can('edit', $this->entity());
2016-02-04 21:35:28 +01:00
}
/**
* 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',
];
}
}