2016-05-01 21:30:39 +02:00
|
|
|
<?php namespace App\Http\Requests;
|
|
|
|
|
2016-06-01 11:39:42 +02:00
|
|
|
use App\Models\Invoice;
|
|
|
|
use App\Models\Expense;
|
|
|
|
|
2016-05-01 21:30:39 +02:00
|
|
|
class CreateDocumentRequest extends DocumentRequest
|
|
|
|
{
|
2016-06-01 11:39:42 +02:00
|
|
|
protected $autoload = [
|
|
|
|
ENTITY_INVOICE,
|
|
|
|
ENTITY_EXPENSE,
|
|
|
|
];
|
|
|
|
|
2016-05-01 21:30:39 +02:00
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize()
|
|
|
|
{
|
2016-06-01 11:39:42 +02:00
|
|
|
if ( ! $this->user()->hasFeature(FEATURE_DOCUMENTS)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->invoice && $this->user()->cannot('edit', $this->invoice)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ($this->expense && $this->user()->cannot('edit', $this->expense)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return $this->user()->can('create', ENTITY_DOCUMENT);
|
2016-05-01 21:30:39 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
2016-05-30 12:44:49 +02:00
|
|
|
//'file' => 'mimes:jpg'
|
2016-05-01 21:30:39 +02:00
|
|
|
];
|
|
|
|
}
|
2016-05-31 22:15:37 +02:00
|
|
|
|
2016-05-01 21:30:39 +02:00
|
|
|
}
|