@extends('admin.layout.master') @section('title','SELL') @section('custom_style') @endsection @section ('content')

Invoice List

{!!getDateInput('date_from','date_from',Request()->date_from)!!}
{!!getDateInput('date_to','date_to',Request()->date_to)!!}

@include('admin.global.loader')
{{-- --}} @if (count($invoices)) @foreach ($invoices as $i=> $inv) @endforeach @endif
# Inv. No Invoice Date Party Name By Inv Amount StatusACTION
{{ $i+1 }} {{ $inv->invoice_no }} {{ date('d-m-Y H:i A', strtotime($inv->date)) }} {{ $inv->party?$inv->party->name_eng:'' }} {{ $inv->createdBy?$inv->createdBy->name:'' }} {{ $inv->net_total }} {{ $inv->status == 1 ? 'Active' : 'Pending' }}
@endsection @section('script') @endsection