@extends('master.app') @section('title','Return Bill View') @section('body')
Return Bill #{{ $bill->invoice_number }}
Back

Customer: {{ $bill->customer->name ?? '' }} | Date: {{ $bill->invoice_date }} | Currency: {{ $bill->currency->title_en ?? $bill->currency->title_ps ?? '' }} | Amount: {{ number_format($bill->amount ?? 0,2) }}

@foreach($bill_items as $i=>$it) @endforeach
#CatSubTypeTo Stock PriceQtyTotal
{{ $i+1 }} {{ $it->category->title_ps ?? $it->cat_id }} {{ $it->sub_category->title_ps ?? $it->sub_cat_id }} {{ $it->reason_type }} {{ (int)$it->to_stock===1?'YES':'NO' }} {{ number_format($it->price,2) }} {{ number_format($it->qty,2) }} {{ number_format($it->total,2) }}
@endsection