@extends('layouts.AdminMaster') @section('content')
| # | Invoice No | Date | Amount | @foreach($orders as $order)
|---|---|---|---|
| {{++$x}} | {{$order->invoice->invoice_id}} | {{$order->invoice->date}} | {{$order->invoice->total}} |
Total : |
@if(isset($total)) {{$total}} @else 000,000 @endif |