2023-07-23 08:33:37 +02:00
|
|
|
@extends('layout.v2')
|
2023-07-12 07:07:06 +02:00
|
|
|
@section('vite')
|
2023-08-15 13:51:38 +02:00
|
|
|
@vite(['resources/assets/v2/sass/app.scss', 'resources/assets/v2/pages/dashboard/dashboard.js'])
|
2023-07-12 07:07:06 +02:00
|
|
|
@endsection
|
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>
|
|
|
|
|
|
|
|
@endsection
|