@extends('layouts.user') @push('css') @endpush @section('contents')
@if (count($dps) == 0)

{{__('No Dps Data Found')}}

@else
@foreach($dps as $key=>$data) @endforeach
{{ __('Plan No') }} {{ __('Deposit Amount') }} {{ __('Matured Amount') }} {{ __('Total Installement') }} {{ __('Next Installment') }} {{ __('Status') }}
{{ $data->transaction_no }}
{{ $data->plan->title }}
{{ showprice($data->deposit_amount,$currency) }}
{{ showprice($data->per_installment,$currency) }} {{__('each')}}
{{ showprice($data->matured_amount,$currency) }}
{{ $data->total_installment}}
{{ $data->given_installment }} @lang('Given')
{{ $data->next_installment ? $data->next_installment->toDateString() : '--'}}
@if ($data->status == 1) @lang('Running') @else @lang('Matured') @endif
{{ $dps->links() }} @endif
@endsection @push('js') @endpush