mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-05 18:52:44 +01:00
348890e8fa
* View composers * Saving client and contacts * saving client and contacts * update client job * unique emails
31 lines
523 B
PHP
31 lines
523 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
class UpdateClientRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize()
|
|
{
|
|
return true;
|
|
// return ! auth()->user(); //todo permissions
|
|
}
|
|
|
|
public function rules()
|
|
|
|
{
|
|
return [
|
|
'name' => 'required',
|
|
'contacts.*.email' => 'email|unique:client_contacts,id'
|
|
];
|
|
}
|
|
|
|
|
|
} |