@extends('front.layouts.master') @section('title', isset($title) ? $title : 'Home') @section('description', isset($description) ? $description : '') @section('keywords', isset($keywords) ? $keywords : '') @section('content')
@include('front.layouts.include.user_profile_sidebar', ['menu' => 'membership'])

{{ __('Invoices') }}

@if (count($invoices) > 0)
@foreach ($invoices as $invoice) @endforeach
{{__('Amount')}} {{__('Description')}} {{__('Status')}}
{{ $invoice->total }} {{__($invoice->reason) }} @if($invoice->payment_status == 'paid') {{ __($invoice->payment_status) }} @else {{ __($invoice->payment_status) }} @endif
{{__('Total')}}
@if ( $total->total > 0) {{ $total->total }} JD @else 0 JD @endif
@if ( $total->total > 0)
@csrf
@endif @else
{{ __('N/A') }}
@endif
@endsection