invoiceninja/app/Http/Requests/Report/GenericReportRequest.php

39 lines
872 B
PHP
Raw Normal View History

2022-04-07 12:17:02 +10:00
<?php
/**
* Invoice Ninja (https://invoiceninja.com).
*
* @link https://github.com/invoiceninja/invoiceninja source repository
*
2022-04-27 13:20:41 +10:00
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
2022-04-07 12:17:02 +10:00
*
* @license https://www.elastic.co/licensing/elastic-license
*/
namespace App\Http\Requests\Report;
use App\Http\Requests\Request;
2022-04-27 15:41:52 +10:00
class GenericReportRequest extends Request
2022-04-07 12:17:02 +10:00
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize() : bool
{
return auth()->user()->isAdmin();
}
2022-04-27 15:17:45 +10:00
public function rules()
{
return [
'start_date' => 'string|date',
'end_date' => 'string|date',
'date_key' => 'string',
'date_range' => 'string',
'report_keys' => 'sometimes|array'
];
}
2022-04-07 12:17:02 +10:00
}