@extends('admin/layouts/default')
{{-- Page title --}}
@section('title')
invoices List
@parent
@stop
{{-- page level styles --}}
@section('header_styles')
@stop
{{-- Page content --}}
@section('content')
ID |
Number |
Date |
Buyer |
Amount |
Delivery Charges |
Actions |
@foreach ($invoices as $invoice)
{!! $invoice->id !!} |
{!! $invoice->number !!} |
{!! $invoice->date !!} |
{!! $invoice->buyer->name !!} |
{!! $invoice->amount !!} |
{!! $invoice->delivery_charges !!} |
|
@endforeach
@stop
{{-- page level scripts --}}
@section('footer_scripts')
@stop