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

40 lines
805 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
*
2023-01-29 09:21:40 +11:00
* @copyright Copyright (c) 2023. 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;
class ShowDocumentRequest extends Request
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
2020-08-20 03:10:04 +02:00
return auth()->user()->can('view', $this->document);
2020-06-23 21:05:41 +10:00
}
/**
* Get the validation rules that apply to the request.
*
* @return array
*/
public function rules()
{
return [
//
];
}
}