invoiceninja/app/Http/Requests/Document/CreateDocumentRequest.php

29 lines
647 B
PHP
Raw Permalink Normal View History

2020-06-23 21:05:41 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
2020-06-23 21:05:41 +10:00
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
* @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com)
2020-06-23 21:05:41 +10:00
*
2021-06-16 16:58:16 +10:00
* @license https://www.elastic.co/licensing/elastic-license
2020-06-23 21:05:41 +10:00
*/
namespace App\Http\Requests\Document;
use App\Http\Requests\Request;
use App\Models\Document;
class CreateDocumentRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->can('create', Document::class);
}
}