151 lines
4.8 KiB
PHP
151 lines
4.8 KiB
PHP
|
|
@extends('layouts.app')
|
||
|
|
|
||
|
|
@section('title')
|
||
|
|
Dashboard
|
||
|
|
@endsection
|
||
|
|
|
||
|
|
@section('admin-content')
|
||
|
|
<section class="content-header">
|
||
|
|
<div class="container-fluid">
|
||
|
|
<div class="row mb-2">
|
||
|
|
<div class="col-sm-6">
|
||
|
|
<h1>Active Budgets</h1>
|
||
|
|
</div>
|
||
|
|
<div class="col-sm-6">
|
||
|
|
<ol class="breadcrumb float-sm-right">
|
||
|
|
<li class="breadcrumb-item"><a href="{{ route('dashboard.index') }}">Dashboard</a></li>
|
||
|
|
</li>
|
||
|
|
</ol>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
<section class="content">
|
||
|
|
<div class="container-fluid">
|
||
|
|
<div class="row">
|
||
|
|
<div class="col-lg-4 col-6">
|
||
|
|
<div class="small-box bg-info">
|
||
|
|
<div class="inner">
|
||
|
|
<h3>Rp {{ number_format($data->whereIn('status', 'Assigned')->sum('amount'), 0, ',', '.') }}</h3>
|
||
|
|
<p>Total Budget Bulan Ini</p>
|
||
|
|
</div>
|
||
|
|
<div class="icon">
|
||
|
|
<i class="fas fa-wallet"></i>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-lg-4 col-6">
|
||
|
|
<div class="small-box bg-success">
|
||
|
|
<div class="inner">
|
||
|
|
<h3>Rp {{ number_format($availableBudget, 0, ',', '.') }}</h3>
|
||
|
|
<p>Total Budget Tersedia</p>
|
||
|
|
</div>
|
||
|
|
<div class="icon">
|
||
|
|
<i class="fas fa-check-circle"></i>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
<div class="col-lg-4 col-6">
|
||
|
|
<div class="small-box bg-danger">
|
||
|
|
<div class="inner">
|
||
|
|
<h3 class="text-white">Rp {{ number_format($usedBudget, 0, ',', '.') }}</h3>
|
||
|
|
<p class="text-white">Total Budget Terpakai</p>
|
||
|
|
</div>
|
||
|
|
<div class="icon">
|
||
|
|
<i class="fas fa-times"></i>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
<section class="content">
|
||
|
|
<div class="container-fluid">
|
||
|
|
<div class="card card-primary card-outline">
|
||
|
|
<div class="card-body">
|
||
|
|
<h4 class="header-title float-left">Current Active Budget</h4>
|
||
|
|
<p class="float-right mb-2">
|
||
|
|
@if (auth()->user()->can('budget_control.create'))
|
||
|
|
<a class="btn btn-primary text-white" href="{{ route('budget_control.create') }}">
|
||
|
|
Add New Budget
|
||
|
|
</a>
|
||
|
|
@endif
|
||
|
|
</p>
|
||
|
|
<div class="clearfix"></div>
|
||
|
|
<div class="dataTables_wrapper dt-bootstrap4 mt-2">
|
||
|
|
@include('backend.layouts.partials.messages')
|
||
|
|
<div class="table-responsive">
|
||
|
|
<table id="dataTable"
|
||
|
|
class="table table-bordered table-striped table-head-fixed dataTable dtr-inline"
|
||
|
|
style="width:100%">
|
||
|
|
<thead class="bg-light text-capitalize">
|
||
|
|
<tr>
|
||
|
|
<th>#</th>
|
||
|
|
<th>Penerima</th>
|
||
|
|
<th>Cabang</th>
|
||
|
|
<th>Pengirim</th>
|
||
|
|
<th>Total</th>
|
||
|
|
<th>Keterangan</th>
|
||
|
|
<th>Periode</th>
|
||
|
|
<th>Tanggal Closing</th>
|
||
|
|
<th>Status</th>
|
||
|
|
<th>Aksi</th>
|
||
|
|
</tr>
|
||
|
|
</thead>
|
||
|
|
<tbody>
|
||
|
|
@foreach ($data as $item)
|
||
|
|
<tr>
|
||
|
|
<td>{{ $loop->iteration }}</td>
|
||
|
|
<td>{{ $item->receiver->name }}</td>
|
||
|
|
<td>{{ $item->cabang->name }}</td>
|
||
|
|
<td>{{ $item->sender->name }}</td>
|
||
|
|
<td>{{ number_format($item->amount, 0, ',', '.') }}</td>
|
||
|
|
<td>{{ $item->remarks }}</td>
|
||
|
|
<td>{{ strtoupper($item->periode_month) }} {{ $item->periode_year }}</td>
|
||
|
|
<td>{{ \Carbon\Carbon::parse($item->closing_at)->locale('id')->isoFormat('D MMMM Y H:mm') }}</td>
|
||
|
|
<td>
|
||
|
|
@if ($item->status == 'Unassigned')
|
||
|
|
<span class="badge badge-warning text-white">{{ $item->status }}</span>
|
||
|
|
@elseif ($item->status == 'Assigned')
|
||
|
|
<span class="badge badge-success text-white">{{ $item->status }}</span>
|
||
|
|
@else
|
||
|
|
<span class="badge badge-danger text-white">{{ $item->status }}</span>
|
||
|
|
@endif
|
||
|
|
</td>
|
||
|
|
<td>
|
||
|
|
@if (auth()->user()->can('budget_control.delete'))
|
||
|
|
<form action="{{ route('budget_control.destroy', $item->id) }}" method="POST" class="d-inline" onsubmit="return confirm('Are you sure you want to delete this item?');">
|
||
|
|
@csrf
|
||
|
|
@method('DELETE')
|
||
|
|
<button type="submit" class="btn btn-danger btn-sm">
|
||
|
|
<i class="fas fa-trash"></i>
|
||
|
|
</button>
|
||
|
|
</form>
|
||
|
|
@endif
|
||
|
|
</td>
|
||
|
|
</tr>
|
||
|
|
@endforeach
|
||
|
|
</tbody>
|
||
|
|
</table>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</div>
|
||
|
|
</section>
|
||
|
|
@endsection
|
||
|
|
|
||
|
|
@section('scripts')
|
||
|
|
<script>
|
||
|
|
$(document).ready(function () {
|
||
|
|
if ($('#dataTable').length) {
|
||
|
|
$('#dataTable').DataTable({
|
||
|
|
responsive: false,
|
||
|
|
dom: 'Bfrtip',
|
||
|
|
buttons: ['excel', 'pdf', 'print']
|
||
|
|
});
|
||
|
|
}
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
@endsection
|