@extends('layouts.order-master') @section('css') @endsection @section('title') Receipt @endsection @section('content')

RECEIPT DETAILS

Go Back
RECIEPT CODE

{{ $collection->receipt_code}}

VOUCHER NUMBER
{{--

{{ $collection->Ledger->voucher->name }}

--}}
COLLECTION DATE

{{ \Carbon\Carbon::parse($collection->date)->format('d M Y') }}

LEDGER (Dr)

{{ $collection->Ledger->name }}

TOTAL

{{ $collection->amount }}

BANK

{{ $collection->bank_name ?? '--' }}

REMARKS

{{ $collection->remarks ?? '--' }}

STATUS
@if ($collection->status != 'Cancelled')

NOT CANCELLED

@else

CANCELLED

@endif
@endsection @section('script') @endsection