1
0
mirror of https://github.com/invoiceninja/invoiceninja.git synced 2024-09-20 16:31:33 +02:00
invoiceninja/app/Http/Requests/CreateDocumentRequest.php

48 lines
988 B
PHP
Raw Normal View History

2016-05-01 21:30:39 +02:00
<?php namespace App\Http\Requests;
use App\Models\Invoice;
use App\Models\Expense;
2016-05-01 21:30:39 +02:00
class CreateDocumentRequest extends DocumentRequest
{
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()
{
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 [
//'file' => 'mimes:jpg'
2016-05-01 21:30:39 +02:00
];
}
2016-05-01 21:30:39 +02:00
}