1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-22 01:11:34 +02:00
invoiceninja/app/Http/Requests/Quote/EditQuoteRequest.php

40 lines
651 B
PHP
Raw Normal View History

2019-05-02 13:07:38 +02:00
<?php
namespace App\Http\Requests\Quote;
use App\Http\Requests\Request;
use App\Models\Quote;
class EditQuoteRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return auth()->user()->can('edit', $this->quote);
}
public function rules()
{
$rules = [];
return $rules;
}
public function sanitize()
{
$input = $this->all();
//$input['id'] = $this->encodePrimaryKey($input['id']);
//$this->replace($input);
return $this->all();
}
}