@extends('layouts.admin') @section('header-content') @endsection @section('content')
@if(!empty($payment)) @if(count($payment->paymentImages->toarray())>0) @foreach($payment->paymentImages->toarray() as $key=>$value) @else @endif @endforeach @else @endif @endif
Payment Detail @if($payment->payment_type=="Cheque")
{!! csrf_field() !!}
@endif
Shop Name @if(isset($payment->shop->name)){{$payment->shop->name}} @endif Payment Collect By @if(isset($payment->user->firstname)){{$payment->user->firstname.' '.$payment->user->lastname}} @endif
Payment Type {{$payment->payment_type}} Amount {{$payment->amount}}
Promise Cheque Date {{$payment->promise_cheque_date}} Cheque Type {{$payment->cheque_type}}
Cheque no {{$payment->cheque_no}}
Description {{$payment->remarks}}
Payment Images
@if(isset($value['image']) && !empty($value['image']))
@endif @if(($key+1)%4==0)
No Images
@endsection