@extends('apex-layouts.main') @section('title',"{$model->invoice->title} INV-{$model->invoice->id}") @section('header-right') Print id)}}" data-modal-id="transaction-changestatus-modal-{{$model->id}}" title=""> @endsection @section('content')

{{$model->method}} ({{$model->id}})

Rs {{$model->amount}} | {{$model->status}}

@if($model->member_id) Against member->id)}}">{{$model->member->name}} @endif


@if($model->invoice_id) Invoice {{$model->invoice->title}}
@endif @if($model->statusDate) Change Status On{{date("y-m-d",strtotime($model->statusDate))}}
@endif @if($model->method) Method{{$model->method}}
@endif @if($model->transactionId) TransactionId{{$model->transactionId}}
@endif @if($model->user_id)
Agent{{$model->createdBy->name}} @endif @if($model->meal_plan_id)
Meal Plan {{$model->mealplan->title}} | Rs {{$model->mealplan->amount}} @endif @if($model->payment_card_id)
Payment Card {{$model->paymentCard->maskedNumber}} | {{$model->paymentCard->expiryMonth}} | {{$model->paymentCard->expiryYear}} @endif
Created {{date("Y-m-d",strtotime($model->created_at))}}
Updated {{date("Y-m-d",strtotime($model->updated_at))}}
@if($model->statusCode) Status Code {{$model->statusCode}}
@endif

@if($model->response)

Response {{$model->response}}

@endif @if($model->gatewayResponse)

Gateway Response

    @foreach(json_decode($model->gatewayResponse) as $index=>$value)
  • {{$index}} : {{$value}}
  • @endforeach

@endif

Back
@endsection @section('scripts') @stop @section('styles') @stop