@extends('layouts.master')
@section('content')
{{ $title }}
{{ \DB::table('transaksis')->whereMonth('tanggal',date('m'))->count() }}
Total Transaksi Bulan Ini
{{ \DB::table('users')->where('role_id',2)->count() }}
Total Customer
{{ number_format(\DB::table('transaksis')->where('status_bayar',3)->whereMonth('tanggal',date('m'))->sum('grand_total_amount'),0) }}
Pendapatan Bulan Ini
{{ number_format(\DB::table('transaksis')->where('status_bayar',3)->sum('grand_total_amount'),0) }}
Total Pendapatan
@endsection
@section('scripts')
@endsection