2018-11-02 11:54:46 +01:00
|
|
|
<?php
|
2019-05-11 05:32:07 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2019. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://opensource.org/licenses/AAL
|
|
|
|
*/
|
2018-11-02 11:54:46 +01:00
|
|
|
|
|
|
|
namespace App\Http\Requests\Client;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
2019-01-21 15:06:49 +01:00
|
|
|
use App\Models\Client;
|
2018-11-02 11:54:46 +01:00
|
|
|
|
2018-11-03 02:01:40 +01:00
|
|
|
class EditClientRequest extends Request
|
2018-11-02 11:54:46 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
2019-04-16 05:28:05 +02:00
|
|
|
public function authorize() : bool
|
2018-11-02 11:54:46 +01:00
|
|
|
{
|
2019-03-27 22:32:50 +01:00
|
|
|
return auth()->user()->can('edit', $this->client);
|
2018-11-02 11:54:46 +01:00
|
|
|
}
|
|
|
|
|
2018-11-10 14:24:36 +01:00
|
|
|
public function sanitize()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
//$input['id'] = $this->encodePrimaryKey($input['id']);
|
|
|
|
|
|
|
|
//$this->replace($input);
|
|
|
|
|
|
|
|
return $this->all();
|
|
|
|
}
|
2018-11-02 11:54:46 +01:00
|
|
|
|
|
|
|
}
|