@extends('admin.layout.master') @section('title', __('obs.invoice_updater')) @section('content')

{{__('obs.invoice_updater')}}

@if (@$invoices) @foreach ($invoices as $key => $inv) @endforeach @endif
# {{__('obs.inv_no')}} {{__('obs.inv_date')}} {{__('obs.by')}} {{__('obs.party')}} {{__('obs.inv_amount')}} {{__('obs.status')}}
{{ ++$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
@endsection