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

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

{{ @$data['show']->title }}


{{ _trans('common.Name') }} {{@$data['show']->user->name}}

{{ _trans('common.Email') }} {{@$data['show']->user->email}}

{{ _trans('common.Role') }} {{__(string_clean(@$data['show']->user->roles ->pluck('name'))) }}

{{ _trans('partial.Due Amount') }} {{ single_price(@$data['show']->due) }}
{{ _trans('common.Status') }} @if(@$data['show']->status == 1) {{ _trans('partial.Partials Paid') }} @endif
{{ _trans('partial.Created Date') }} {{ main_date_format(@$data['show']->created_date) }}
@endsection