@extends('layouts.admin_master') @section('content')
Invoices List
@foreach($invoices as $row) @endforeach
Invoice No. Customer Name Customer Email Company Address Product Name Quantity Total Cost Due Date
{{ $row->id }} {{ $row->customer_name }} {{ $row->customer_mail }} {{ $row->company }} {{ $row->address }} {{ $row->product_name }} {{ $row->quantity }} {{ $row->total }} {{ $row->due }} {{ $row->created_at }}
@endsection @section('script') @endsection