@extends('layout') @section('h4-page', __('Taxinvoice')) @section('contents')
@if (session('success')) @endif @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif
  • {{-- --}}
@if (isset($main)) @forelse ($main as $key => $item) @empty @endforelse @else @endif
# {{ __('No') }} {{ __('Date') }} {{ __('AccountName') }} {{ __('Grand Total') }} {{ __('Action') }}
{{ $key + 1 }} {{ $item->no }} {{ date('d-m-Y', strtotime($item->date)) }} {{ $item->name }} {{ number_format($item->grand_total, 2) }} {{ __('edit') }} icon
{{ __('NoDataFound') }}
{{ __('NoDataFound') }}
{{ @$main->appends(request()->except('page'))->links('pagination::bootstrap-5') }}
@endsection