@extends('master.app') @section('title','Customer Return Bills') @section('body')
Customer Return Bills
New Return
@forelse($bills as $row) @empty @endforelse
# Invoice Title Customer Currency Date Amount Status Action
{{ $row->id }} {{ $row->invoice_number }} {{ $row->title }} {{ $row->customer->name ?? '' }} {{ $row->currency->title_en ?? $row->currency->title_ps ?? '' }} {{ $row->invoice_date }} {{ number_format($row->amount ?? 0, 2) }} @if((int)$row->status===1) Final @else Draft @endif View Edit Delete
No records
{{-- {{ $bills->links() }} --}} {{ $bills->links('pagination::bootstrap-4') }}
@endsection