chore(money,taxation): remove legacy-era money and taxation sources

This commit is contained in:
Darko Gjorgjijoski
2026-08-20 20:54:20 +02:00
parent d8a96a3fb8
commit 398863e437
19 changed files with 0 additions and 1337 deletions
@@ -1,35 +0,0 @@
<?php
namespace App\Domains\Money\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class BulkExchangeRateRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*/
public function authorize(): bool
{
return true;
}
/**
* Get the validation rules that apply to the request.
*/
public function rules(): array
{
return [
'currencies' => [
'required',
],
'currencies.*.id' => [
'required',
'numeric',
],
'currencies.*.exchange_rate' => [
'required',
],
];
}
}