@extends('layouts.admin') @section('title') Subscriptions @endsection @section('page_title') Subscriptions @endsection @push('page_style') @include('include.dataTableStyles') @endpush @section('content') @push('page_style') @endpush Subscriptions List of all Subscriptions Subscriptions filter by : {{-- Underpayment Overpayment Refunded --}} @php $under=\App\Models\Subscription::where('status',\App\Models\Subscription::STATUS_UNDERPAYMENT)->count(); $over=\App\Models\Subscription::where('status',\App\Models\Subscription::STATUS_OVERPAYMENT)->count(); $refund=\App\Models\Subscription::where('status',\App\Models\Subscription::STATUS_REFUND)->count(); @endphp Underpayment @if ($under) {{$under}} @endif Overpayment @if ($over) {{$over}} @endif Refunded @if ($refund) {{$refund}} @endif S.No Subscription ID User Advertisment Status Created At Action Log Are you sure you want to refund this Payment? Yes, Refund No, Cancel @push('page_script') @include('include.dataTableScripts') @endpush @endsection