@extends('admin.master', ['menu' => 'memberShip', 'submenu' => 'allMembership']) @section('title', isset($title) ? $title : '') @section('content')
Total Unpaid Invoices = @if($total > 0) {{ $total }} JD @else 0 JD @endif
@if($total > 0)
@if (app()->getLocale() == 'en') @else @endif Pay due invoice?
please choose the payment method
any()) style="display:block" @else style="display:none" @endif>
@csrf
@endif
@foreach($membershipInvoices as $invoice) @endforeach
Membership ID Membership Type English Name Arabic Name Reason Amount Payment Method Payment Status Payment Date Start Date End Date Created at
{{ $invoice->membership_id }} {{ $membership->type }} {{ $membership->user->name }} {{ $membership->user->name_ar }} {{ $invoice->reason }} {{ $invoice->total }} {{ $invoice->payment_type }} {{ $invoice->payment_status }} {{ $invoice->payment_date }} {{ $invoice->start_date }} {{ $invoice->end_date }} {{ date('Y-m-d', strtotime($invoice->created_at)) }}
{{ $membershipInvoices->appends(request()->input())->links('admin.pagination') }}
@push('post_scripts') @endpush @endsection