@extends('layouts.app', ['breadcrumbs' => [ ['href'=> route('dashboard'), 'text'=> 'Dashboard'], ['href'=> route('fees.index'), 'text'=> 'Fees'], ['href'=> route('fee-invoices.index'), 'text'=> 'Fee Invoices'], ['href'=> route('fee-invoices.show', $feeInvoice->id), 'text'=> $feeInvoice->name, 'active'], ]]) @section('title', __($feeInvoice->name)) @section('page_heading', __($feeInvoice->name)) @section('content', ) Print Invoice @livewire('show-fee-invoice', ['feeInvoice' => $feeInvoice]) @endsection