92 lines
3.6 KiB
PHP
92 lines
3.6 KiB
PHP
<?php
|
|
|
|
namespace App\Http\Controllers;
|
|
|
|
use App\Enums\AccountType;
|
|
use App\Models\Account;
|
|
use App\Models\AccountBalance;
|
|
use App\Services\AccountMetricsService;
|
|
use Illuminate\Foundation\Auth\Access\AuthorizesRequests;
|
|
use Illuminate\Http\Request;
|
|
use Inertia\Inertia;
|
|
use Inertia\Response;
|
|
|
|
class AccountController extends Controller
|
|
{
|
|
use AuthorizesRequests;
|
|
|
|
public function __construct(private AccountMetricsService $accountMetricsService) {}
|
|
|
|
public function index(Request $request): Response
|
|
{
|
|
$user = $request->user();
|
|
|
|
$accounts = Account::query()
|
|
->where('user_id', $user->id)
|
|
->with('bank:id,name,logo')
|
|
->orderByRaw("FIELD(type, 'checking', 'savings', 'investment', 'retirement', 'real_estate', 'loan', 'credit_card', 'others')")
|
|
->orderBy('name')
|
|
->get(['id', 'name', 'name_iv', 'encrypted', 'bank_id', 'type', 'currency_code', 'banking_connection_id']);
|
|
|
|
return Inertia::render('Accounts/Index', [
|
|
'accounts' => $accounts,
|
|
'accountMetrics' => Inertia::defer(fn () => $this->accountMetricsService->getAccountMetrics($user->currency_code, $accounts)),
|
|
]);
|
|
}
|
|
|
|
public function show(Request $request, Account $account): Response
|
|
{
|
|
$this->authorize('view', $account);
|
|
|
|
$account->load('bank:id,name,logo');
|
|
|
|
$data = $account->only(['id', 'name', 'name_iv', 'encrypted', 'bank_id', 'type', 'currency_code', 'banking_connection_id', 'bank']);
|
|
|
|
if ($account->type === AccountType::RealEstate) {
|
|
$account->load('realEstateDetail.linkedLoanAccount.bank:id,name,logo');
|
|
$realEstateDetail = $account->realEstateDetail;
|
|
|
|
if ($realEstateDetail) {
|
|
$linkedLoan = $realEstateDetail->linkedLoanAccount;
|
|
|
|
$data['real_estate_detail'] = [
|
|
...$realEstateDetail->only([
|
|
'id', 'property_type', 'address', 'purchase_price',
|
|
'purchase_date', 'area_value', 'area_unit', 'notes',
|
|
'linked_loan_account_id',
|
|
]),
|
|
'linked_loan_account' => $linkedLoan
|
|
? $linkedLoan->only(['id', 'name', 'name_iv', 'encrypted', 'type', 'currency_code', 'bank'])
|
|
: null,
|
|
];
|
|
|
|
// Include current balances for equity calculation
|
|
if ($linkedLoan) {
|
|
$data['real_estate_detail']['current_loan_balance'] = AccountBalance::query()
|
|
->where('account_id', $linkedLoan->id)
|
|
->where('balance_date', '<=', now()->toDateString())
|
|
->orderByDesc('balance_date')
|
|
->value('balance') ?? 0;
|
|
}
|
|
|
|
$data['real_estate_detail']['current_market_value'] = AccountBalance::query()
|
|
->where('account_id', $account->id)
|
|
->where('balance_date', '<=', now()->toDateString())
|
|
->orderByDesc('balance_date')
|
|
->value('balance') ?? 0;
|
|
}
|
|
|
|
// Provide available loan accounts for linking
|
|
$data['available_loan_accounts'] = $request->user()
|
|
->accounts()
|
|
->where('type', AccountType::Loan->value)
|
|
->with('bank:id,name,logo')
|
|
->get(['id', 'name', 'name_iv', 'encrypted', 'bank_id', 'type', 'currency_code']);
|
|
}
|
|
|
|
return Inertia::render('Accounts/Show', [
|
|
'account' => $data,
|
|
]);
|
|
}
|
|
}
|