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

Suppliers Invoices

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