@extends('layouts.master') @section('title') @lang('translation.Invoice_List') @endsection @section('css') @endsection @section('content') @component('common-components.breadcrumb') @slot('pagetitle') Invoices @endslot @slot('title') Invoice List @endslot @endcomponent
@foreach ($data as $or) @endforeach
Invoice ID Date Billing Name Amount Status Download Pdf Action
#{{ $or['id'] }} {{ $or['created_at'] }} {{ $or['user']['name'] }} ${{ $or['total_price'] }}
{{ $or['status_id'] }}
@endsection @section('script') @endsection