@extends('layouts.app') @section('title', 'Invoices') @push('style') @endpush @section('content') @php $routePrefix = strtolower(auth()->user()->role->name); $canCreate = auth()->user()->hasPermissionName('invoices.create'); @endphp

Invoices

Manage and track all your invoices.
@if($canCreate) New Invoice @endif
@if(session('success'))
{{ session('success') }}
@endif
All Invoices
# Invoice No. Customer Date Amount Status Action
@endsection @push('script') @endpush