@extends('Admin.master_layout.master') @section('title', $transaction_type_name) @section('header_menu') @parent @endsection @section('sidebar_menu') @parent @endsection @section('content')

{{ $transaction_type_name }}


@if (Session::has('message'))
{!! Session::get('message') !!}
@endif @if (Session::has('error'))
{!! Session::get('error') !!}
@endif @if (Session::has('success'))
{!! Session::get('success') !!}
@endif
{{ $transaction_type_name }} List
@if($transaction_type !== null) Add @else Add @endif
@if(count($orders) > 0) @foreach($orders as $data) @endforeach @endif
No. Merchant Name Merchant Customer Id Merchant Payer Id Customer Name Payer Name Amount 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 }} {{ $data->short_link }} @if($data->payment_status == 0) Pending @elseif($data->payment_status ==1) Completepayment_status == 2) Closed @if($transaction_type !== null) @if($permission == true) @endif @if($user_role != 11) @endif @if($data->payment_status ==1) @endif @if($user_role == 11 && $data->payment_status != 2) Closed @endif @else @if($permission == true) @endif @if($user_role != 11) @endif @if($data->payment_status ==1) @endif @if($user_role == 11 && $data->payment_status != 2) Closed @endif @endif
@endsection @section('footer') @parent @endsection @section('extraa_script_and_js') @parent @endsection