17 lines
472 B
PHP
17 lines
472 B
PHP
@extends('layouts.app')
|
|
|
|
@section('title', 'Purchases 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">Purchases Report</li>
|
|
</ol>
|
|
@endsection
|
|
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<livewire:reports.purchases-report :suppliers="\Modules\People\Entities\Supplier::all()"/>
|
|
</div>
|
|
@endsection
|