@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 Type Title customer Total Date Actions
{{ $row->invoice_number }} @if($row->type_id==1) {{ "F-Goods" }} @elseif($row->type_id==2) {{ "R-Matrieals" }} @elseif($row->type_id==3) {{ "Printing" }} @else {{ "Pressing" }} @endif {{ $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