17 lines
426 B
PHP
17 lines
426 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Profit / Loss Report')
|
|
|
|
@section('breadcrumb')
|
|
<ol class="breadcrumb border-0 m-0">
|
|
<li class="breadcrumb-item"><a href="{{ route('home') }}">Home</a></li>
|
|
<li class="breadcrumb-item active">Profit Loss Report</li>
|
|
</ol>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<livewire:reports.profit-loss-report/>
|
|
</div>
|
|
@endsection
|