2022-09-15 05:58:42 +02:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Invoice Ninja (https://invoiceninja.com).
|
|
|
|
*
|
|
|
|
* @link https://github.com/invoiceninja/invoiceninja source repository
|
|
|
|
*
|
|
|
|
* @copyright Copyright (c) 2022. Invoice Ninja LLC (https://invoiceninja.com)
|
|
|
|
*
|
|
|
|
* @license https://www.elastic.co/licensing/elastic-license
|
|
|
|
*/
|
|
|
|
|
|
|
|
namespace App\Http\Requests\BankTransaction;
|
|
|
|
|
|
|
|
use App\Http\Requests\Request;
|
|
|
|
use App\Models\BankTransaction;
|
|
|
|
|
|
|
|
class MatchBankTransactionRequest extends Request
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Determine if the user is authorized to make this request.
|
|
|
|
*
|
|
|
|
* @return bool
|
|
|
|
*/
|
|
|
|
public function authorize() : bool
|
|
|
|
{
|
|
|
|
return auth()->user()->isAdmin();
|
|
|
|
}
|
2022-09-15 06:15:02 +02:00
|
|
|
|
|
|
|
public function rules()
|
|
|
|
{
|
|
|
|
|
|
|
|
return [
|
|
|
|
'*.id' => 'required|bail',
|
|
|
|
'*.invoice_id' => 'nullable|sometimes',
|
|
|
|
'*.expense_id' => 'nullable|sometimes'
|
|
|
|
];
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public function prepareForValidation()
|
|
|
|
{
|
|
|
|
$input = $this->all();
|
|
|
|
|
|
|
|
$input = $this->decodePrimaryKeys($input);
|
|
|
|
|
|
|
|
$this->replace($input);
|
|
|
|
|
|
|
|
}
|
2022-09-15 05:58:42 +02:00
|
|
|
}
|