@extends('layouts.master') @section('title', 'Template') {{-- @section('content-header', 'Template') --}} @section('style-plugins') @endsection @section('style-custom') @endsection @section('content')

Jumlah Permohonan

{{ App\Models\DataIntal::whereDate('created_at',Carbon\Carbon::now()->toDateString())->count() }}

Hari Ini

More info

{{ App\Models\DataIntal::whereMonth('created_at',Carbon\Carbon::now()->month)->whereYear('created_at',Carbon\Carbon::now()->year)->count() }}

Bulan Ini

More info

{{ App\Models\DataIntal::whereYear('created_at',Carbon\Carbon::now()->year)->count() }}

Tahun Ini

More info

Bersedia Menerima Notifikasi

@php $menerima = App\Models\DataIntal::where('menerima_pesan','1')->whereDate('created_at',Carbon\Carbon::now()->toDateString())->count(); $semua = App\Models\DataIntal::whereDate('created_at',Carbon\Carbon::now()->toDateString())->count(); @endphp
Hari Ini {{ $menerima }}
{{ ($semua?(($menerima/$semua)*100):0).'% dari '.$semua }}
@php $menerima = App\Models\DataIntal::where('menerima_pesan','1')->whereMonth('created_at',Carbon\Carbon::now()->month)->whereYear('created_at',Carbon\Carbon::now()->year)->count(); $semua = App\Models\DataIntal::whereMonth('created_at',Carbon\Carbon::now()->month)->whereYear('created_at',Carbon\Carbon::now()->year)->count(); @endphp
Bulan Ini {{ $menerima }}
{{ ($semua?(($menerima/$semua)*100):0).'% dari '.$semua }}
@php $menerima = App\Models\DataIntal::where('menerima_pesan','1')->whereYear('created_at',Carbon\Carbon::now()->year)->count(); $semua = App\Models\DataIntal::whereYear('created_at',Carbon\Carbon::now()->year)->count(); @endphp
Tahun Ini {{ $menerima }}
{{ ($semua?(($menerima/$semua)*100):0).'% dari '.$semua }}

Pesan Terkirim

Hari Ini {{ App\Models\SentItems::whereDate('created_at',Carbon\Carbon::now()->toDateString())->count() }}
Bulan Ini {{ App\Models\SentItems::whereMonth('created_at',Carbon\Carbon::now()->month)->whereYear('created_at',Carbon\Carbon::now()->year)->count() }}
Tahun Ini {{ App\Models\SentItems::whereYear('created_at',Carbon\Carbon::now()->year)->count() }}
@endsection @section('script-plugins') @endsection @section('script-custom') @endsection