diff --git a/app/Models/CurrencyExchangeRate.php b/app/Models/CurrencyExchangeRate.php index 7f752412d4..31a95e8348 100644 --- a/app/Models/CurrencyExchangeRate.php +++ b/app/Models/CurrencyExchangeRate.php @@ -63,6 +63,9 @@ use Illuminate\Support\Carbon; * @method static Builder|CurrencyExchangeRate whereUserRate($value) * @property int|null $user_group_id * @method static Builder|CurrencyExchangeRate whereUserGroupId($value) + * @method static Builder|CurrencyExchangeRate onlyTrashed() + * @method static Builder|CurrencyExchangeRate withTrashed() + * @method static Builder|CurrencyExchangeRate withoutTrashed() * @mixin Eloquent */ class CurrencyExchangeRate extends Model diff --git a/app/Models/TransactionJournal.php b/app/Models/TransactionJournal.php index 9581764f8e..166cb72b53 100644 --- a/app/Models/TransactionJournal.php +++ b/app/Models/TransactionJournal.php @@ -117,6 +117,8 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; * @property int $the_count * @property int|null $user_group_id * @method static EloquentBuilder|TransactionJournal whereUserGroupId($value) + * @property-read Collection $auditLogEntries + * @property-read int|null $audit_log_entries_count * @mixin Eloquent */ class TransactionJournal extends Model diff --git a/app/Models/UserGroup.php b/app/Models/UserGroup.php index 21941ef0d9..5be2e89e81 100644 --- a/app/Models/UserGroup.php +++ b/app/Models/UserGroup.php @@ -65,6 +65,26 @@ use Symfony\Component\HttpKernel\Exception\NotFoundHttpException; * @property-read int|null $piggy_banks_count * @property-read Collection $transactionJournals * @property-read int|null $transaction_journals_count + * @property-read Collection $attachments + * @property-read int|null $attachments_count + * @property-read Collection $categories + * @property-read int|null $categories_count + * @property-read Collection $currencyExchangeRates + * @property-read int|null $currency_exchange_rates_count + * @property-read Collection $objectGroups + * @property-read int|null $object_groups_count + * @property-read Collection $recurrences + * @property-read int|null $recurrences_count + * @property-read Collection $ruleGroups + * @property-read int|null $rule_groups_count + * @property-read Collection $rules + * @property-read int|null $rules_count + * @property-read Collection $tags + * @property-read int|null $tags_count + * @property-read Collection $transactionGroups + * @property-read int|null $transaction_groups_count + * @property-read Collection $webhooks + * @property-read int|null $webhooks_count * @mixin Eloquent */ class UserGroup extends Model diff --git a/resources/views/v2/transactions/create.blade.php b/resources/views/v2/transactions/create.blade.php deleted file mode 100644 index 1607b417a0..0000000000 --- a/resources/views/v2/transactions/create.blade.php +++ /dev/null @@ -1,216 +0,0 @@ -@extends('layout.v2') -@section('vite') - @vite(['resources/assets/v2/sass/app.scss', 'resources/assets/v2/pages/transactions/create.js']) -@endsection -@section('content') -
- -
-
-
- - -
-
-
-
- -
-
-
- -
-
-
- -
-
-
-
- -@endsection