2023-07-23 08:33:37 +02:00
|
|
|
@extends('layout.v2')
|
2023-07-11 14:42:57 +02:00
|
|
|
@section('content')
|
|
|
|
|
|
|
|
<div class="app-content">
|
|
|
|
<!--begin::Container-->
|
|
|
|
<div class="container-fluid">
|
2023-07-15 15:25:04 +02:00
|
|
|
@include('partials.dashboard.boxes')
|
2023-08-08 14:11:04 +02:00
|
|
|
|
2023-09-17 09:45:34 +02:00
|
|
|
<!-- row with account, budget and category data -->
|
2023-08-06 18:33:29 +02:00
|
|
|
<div class="row mb-2" x-data="accounts">
|
2023-09-17 09:45:34 +02:00
|
|
|
<!-- column with 3 charts -->
|
2023-08-06 18:33:29 +02:00
|
|
|
<div class="col-xl-8 col-lg-12 col-sm-12 col-xs-12">
|
2023-09-17 09:45:34 +02:00
|
|
|
<!-- row with account chart -->
|
|
|
|
@include('partials.dashboard.account-chart')
|
|
|
|
<!-- row with budget chart -->
|
|
|
|
@include('partials.dashboard.budget-chart')
|
|
|
|
<!-- row with category chart -->
|
|
|
|
@include('partials.dashboard.category-chart')
|
2023-08-06 18:33:29 +02:00
|
|
|
</div>
|
|
|
|
<div class="col-xl-4 col-lg-12 col-sm-12 col-xs-12">
|
2023-09-17 09:45:34 +02:00
|
|
|
<!-- row with accounts list -->
|
|
|
|
@include('partials.dashboard.account-list')
|
2023-08-06 18:33:29 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
2023-09-17 09:45:34 +02:00
|
|
|
<!-- row with sankey chart -->
|
2023-08-06 18:33:29 +02:00
|
|
|
<div class="row mb-2">
|
2023-09-17 09:45:34 +02:00
|
|
|
@include('partials.dashboard.sankey')
|
2023-08-06 18:33:29 +02:00
|
|
|
</div>
|
2023-09-17 09:45:34 +02:00
|
|
|
<!-- row with piggy banks, subscriptions and empty box -->
|
|
|
|
<div class="row mb-2">
|
|
|
|
<!-- column with subscriptions -->
|
|
|
|
@include('partials.dashboard.subscriptions')
|
|
|
|
<!-- column with piggy banks -->
|
|
|
|
@include('partials.dashboard.piggy-banks')
|
|
|
|
<!-- column with to do things -->
|
2023-08-06 18:33:29 +02:00
|
|
|
<div class="col">
|
|
|
|
<div class="card">
|
|
|
|
<div class="card-header">
|
2023-08-06 19:36:55 +02:00
|
|
|
<h3 class="card-title"><a href="#" title="Something">recurring? rules? tags?</a></h3>
|
2023-08-06 18:33:29 +02:00
|
|
|
</div>
|
|
|
|
<div class="card-body">
|
2023-08-11 06:03:31 +02:00
|
|
|
<p>
|
|
|
|
TODO
|
|
|
|
</p>
|
2023-08-06 18:33:29 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
2023-07-26 07:08:00 +02:00
|
|
|
</div>
|
2023-07-23 07:10:31 +02:00
|
|
|
</div>
|
2023-08-04 19:10:49 +02:00
|
|
|
|
2023-07-11 14:42:57 +02:00
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
2024-08-03 18:27:19 +02:00
|
|
|
<!-- TODO this is a repeated piece of code -->
|
|
|
|
<div class="modal fade" id="filterModal" tabindex="-1" aria-labelledby="filterModalLabel" aria-hidden="true">
|
|
|
|
<div class="modal-dialog modal-sm">
|
|
|
|
<div class="modal-content">
|
|
|
|
<div class="modal-header">
|
|
|
|
<h1 class="modal-title fs-5" id="filterModalLabel">TODO Options dialog</h1>
|
|
|
|
<button type="button" class="btn-close" data-bs-dismiss="modal" aria-label="Close"></button>
|
|
|
|
</div>
|
|
|
|
<div class="modal-body">
|
|
|
|
Bla bla bla
|
|
|
|
</div>
|
|
|
|
<div class="modal-footer">
|
|
|
|
<button type="button" class="btn btn-secondary" data-bs-dismiss="modal"><em
|
|
|
|
class="fa-solid fa-right-from-bracket"></em> Cancel
|
|
|
|
</button>
|
|
|
|
<button type="button" class="btn btn-primary" data-bs-dismiss="modal"><em
|
|
|
|
class="fa-solid fa-magnifying-glass"></em> Search
|
|
|
|
</button>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
2023-07-11 14:42:57 +02:00
|
|
|
@endsection
|
2024-03-09 12:21:45 +01:00
|
|
|
@section('scripts')
|
2024-04-07 10:12:23 +02:00
|
|
|
@vite(['src/pages/dashboard/dashboard.js'])
|
2024-03-09 12:21:45 +01:00
|
|
|
@endsection
|