@extends('backend.layouts.app') @section('title', 'Due Payment List') @section('content')

{{ _trans('common.Due Payment List') }}

@foreach ($data['payment'] as $item) @endforeach
{{ _trans('common.SL') }} {{ _trans('common.Name') }} {{ _trans('common.Email') }} {{ _trans('common.Due Amount') }} {{ _trans('common.Created Date') }} {{ _trans('common.Status') }} {{ _trans('common.Action') }}
{{ __(@$item->id) }} {{ __(@$item->user->name) }} {{ __(@$item->user->email) }} {{ __(single_price(@$item->due)) }} {{ main_date_format(@$item->created_at) }} @if ($item->status == 1) {{ _trans('partial.Partials Paid') }} @endif
@endsection @push('js') @include('backend.partials.datatable') @endpush @section('script') @endsection