@extends('master.app') @section('title', 'customer') @section('body')

Invoices

Report @include('general.filter-button') Add
@include('sale.bills.filter-form')
@foreach ($bills as $row) @endforeach
Invoice Title customer Total Date Actions
{{ $row->invoice_number }} {{ $row->title }} {{ $row->customer->name }} {{ $row->grand_total . ' ' . $row->currency->title_en }} {{ $row->invoice_date }}
{{--
{{ $bills->links('pagination::bootstrap-4') }}
--}}
@include('sale.bills.filter-modal') @endsection @section('pageJs') @endsection