@extends('admin.layout.master') @section('title', __('obs.invoice_updater')) @section('content')
| # | {{__('obs.inv_no')}} | {{__('obs.inv_date')}} | {{__('obs.by')}} | {{__('obs.party')}} | {{__('obs.inv_amount')}} | {{__('obs.status')}} | @if (@$invoices) @foreach ($invoices as $key => $inv)
|---|---|---|---|---|---|---|
| {{ ++$key }} | {{ $inv->invoice_no }} | {{ $inv->date }} | {{ $inv->createdBy->name }} | {{ $inv->party ? $inv->party->name_eng : '' }} | {{ number_format($inv->net_total, 2) }} | @if ($inv->status == 1) {{__('obs.active')}} @else {{__('obs.inactive')}} @endif |