mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2025-05-24 02:14:21 -04:00
* 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
50 lines
1.1 KiB
PHP
50 lines
1.1 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
use App\Http\Requests\Request;
|
|
use Illuminate\Support\Facades\Log;
|
|
use Illuminate\Validation\Rule;
|
|
|
|
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()
|
|
{
|
|
|
|
/* Ensure we have a client name, and that all emails are unique!!!!!*/
|
|
$rules['name'] = 'required';
|
|
|
|
$contacts = request('contacts');
|
|
|
|
for ($i = 0; $i < count($contacts); $i++) {
|
|
$rules['contacts.' . $i . '.email'] = 'required|email|unique:client_contacts,email,' . $contacts[$i]['id'];
|
|
}
|
|
|
|
return $rules;
|
|
|
|
|
|
}
|
|
|
|
public function messages()
|
|
{
|
|
return [
|
|
'unique' => trans('validation.unique', ['attribute' => 'email']),
|
|
'required' => trans('validation.required', ['attribute' => 'email']),
|
|
'email' => trans('validation.email', ['attribute' => 'email'])
|
|
];
|
|
}
|
|
|
|
|
|
} |