2020-01-30 02:27:22 +01:00
|
|
|
<?php
|
2020-10-22 08:46:02 +02:00
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
2024-04-12 06:15:41 +02:00
|
|
|
* @copyright Copyright (c) 2024. Invoice Ninja LLC (https://invoiceninja.com)
|
2020-10-22 08:46:02 +02:00
|
|
|
*
|
2021-06-16 08:58:16 +02:00
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
2020-10-22 08:46:02 +02:00
|
|
|
*/
|
|
|
|
|
2020-01-30 02:27:22 +01:00
|
|
|
namespace App\Http\Requests\Credit;
|
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
use App\Http\Requests\Request;
|
2020-11-25 15:19:52 +01:00
|
|
|
use App\Models\Credit;
|
2020-01-30 02:27:22 +01:00
|
|
|
|
2020-10-22 08:46:02 +02:00
|
|
|
class CreateCreditRequest extends Request
|
2020-01-30 02:27:22 +01:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
2024-01-14 05:05:00 +01:00
|
|
|
public function authorize(): bool
|
2020-01-30 02:27:22 +01:00
|
|
|
{
|
|
|
|
return auth()->user()->can('create', Credit::class);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the validation rules that apply to the request.
|
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
return [
|
|
|
|
//
|
|
|
|
];
|
|
|
|
}
|
|
|
|
}
|