@extends('payer.master_layout.master') @section('title', 'Billing') @section('header_menu') @parent @endsection @section('sidebar_menu') @parent @endsection @section('content')

Billing


@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (Session::has('success'))
{!! Session::get('success') !!}
@endif
Billing List
@if(count($orders) > 0) @foreach($orders as $data) @endforeach @endif
No. Merchant Name Merchant Customer Id Merchant Payer Id Customer Name Payer Name Amount Date Payment Url Payment Status Actions
{{ $no++ }} {{ getMechantName($data->merchant_id) }} {{ $data->merchant_customer_id }} {{ $data->merchent_payer_id }} {{ $data->customer_name }} {{ $data->payer_name }} {{ $data->amount }} {{ getDateTimeStampFormat($data->created_at) }} {{ $data->short_link }} {{ ($data->payment_status == 0 )? 'Pending':'Complete'}} @if($data->payment_status ==1) @endif
@endsection @section('footer') @parent @endsection @section('extraa_script_and_js') @parent @endsection