| {{ __('Invoice No') }} |
{{ __('Plan Name') }} |
{{ __('Price') }} |
{{ __('Payment Method') }} |
{{ __('Payment Id') }} |
{{ __('Created at') }} |
{{ __('View') }} |
@foreach($histories as $row)
@isset($row->payment_method->trasection_id)
| {{ $row->order_no }} |
{{ $row->plan_info->name }} |
{{ $row->amount }} |
{{ $row->payment_method->method->name ?? '' }} |
{{ $row->payment_method->trasection_id ?? '' }} |
{{ $row->created_at->format('d-F-Y') }} |
|
@endisset
@endforeach
{{ $histories->links('vendor.pagination.bootstrap-4') }}