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

{{ _trans('common.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('common.Amount') }} {{ single_price(@$data['show']->amount) }}
{{ _trans('common.Due') }} {{ single_price(@$data['show']->due) }}
{{ _trans('common.Status') }} @if(@$data['show']->status == 1) {{ _trans('common.Paid') }} @endif
{{ _trans('common.Created Date') }} {{ main_date_format(@$data['show']->created_date) }}
@endsection