@extends('layouts.master')
@section('contents')
| Invoice Number |
Work Order no. |
Month |
Created |
View |
@forelse($invoices as $value)
| {{$value->ir_invoice_number}} |
{{$value->ir_wo}} |
{{$value->ir_month}} |
{{$value->created_at}} |
Not Saved Invoice |
@empty
| No Record Found |
@endforelse
{{ $invoices->links() }}
@endsection