mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-11 05:32:39 +01:00
da325e1797
* Add URL link directly to client view in list view * Implement Form requests for all client routes * Refactor how permissions are implemented on Datatable row action menus * fixes for tests
21 lines
365 B
PHP
21 lines
365 B
PHP
<?php
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
use App\Http\Requests\Request;
|
|
use App\Models\Client;
|
|
|
|
class CreateClientRequest extends Request
|
|
{
|
|
/**
|
|
* Determine if the user is authorized to make this request.
|
|
*
|
|
* @return bool
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
{
|
|
return $this->user()->can('create', Client::Class);
|
|
}
|
|
|
|
} |