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

Invoices of

{{ $supplier->name }}
Report @include('general.filter-button') Add
@include('purchase.suppliers.bills.filter-form')
@foreach ($bills as $row) @endforeach
Number Type Title Total Date Actions
{{ $row->invoice_number }} @if ($row->type_id == 1 || $row->type_id == null) {{ 'Row Matirials' }} @else {{ 'Finished Goods' }} @endif {{ $row->title }} {{ $row->grand_total . ' ' . $row->currency->title_en }} {{ $row->invoice_date }}
{{--
{{ $bills->links('pagination::bootstrap-4') }}
--}}
@include('purchase.suppliers.bills.filter-modal') @endsection @section('pageJs') @endsection