mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
7ee295ec44
* added npm package to resolve typescript dependencies * OO JS forms * OO forms * Refactors forms to abstract form CRUD * Working on Promises * Fix for errors in js form * Form validation with array of data * Client update validation - array * handle array validation * Toastr notifications * Clean up
32 lines
526 B
PHP
32 lines
526 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
class StoreClientRequest 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,email'
|
|
|
|
];
|
|
}
|
|
|
|
|
|
} |