2019-04-15 02:10:54 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Http\Requests\Invoice;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\Invoice;
|
|
|
|
|
|
|
|
class StoreInvoiceRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Invoice::class);
|
|
|
|
}
|
|
|
|
|
2019-04-28 14:23:22 +02:00
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
'documents' => 'mimes:png,ai,svg,jpeg,tiff,pdf,gif,psd,txt,doc,xls,ppt,xlsx,docx,pptx',
|
|
|
|
];
|
|
|
|
}
|
|
|
|
|
2019-04-15 02:10:54 +02:00
|
|
|
|
2019-04-16 07:28:30 +02:00
|
|
|
public function sanitize()
|
|
|
|
{
|
|
|
|
//do post processing of invoice request here, ie. invoice_items
|
|
|
|
}
|
|
|
|
|
2019-04-15 02:10:54 +02:00
|
|
|
public function messages()
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2019-04-28 14:23:22 +02:00
|
|
|
}
|
|
|
|
|