Created
February 15, 2021 11:25
-
-
Save jongravois/3c5ef83931f050342f4d15f5a9554de7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@push('pagetitle', 'Levo Sales Monthly') | |
<x-page.menued> | |
<x-page.header title="Monthly Sales Report"> | |
<x-elements.header-previous-button/> | |
</x-page.header> | |
<div class="px-8 py-4"> | |
<x-table header> | |
<x-slot name="head"> | |
<x-table.heading>{{today()->format('Y')}}</x-table.heading> | |
<x-table.heading>Jan</x-table.heading> | |
<x-table.heading>Feb</x-table.heading> | |
<x-table.heading>Mar</x-table.heading> | |
<x-table.heading>Apr</x-table.heading> | |
<x-table.heading>May</x-table.heading> | |
<x-table.heading>Jun</x-table.heading> | |
<x-table.heading>Jul</x-table.heading> | |
<x-table.heading>Aug</x-table.heading> | |
<x-table.heading>Sep</x-table.heading> | |
<x-table.heading>Oct</x-table.heading> | |
<x-table.heading>Nov</x-table.heading> | |
<x-table.heading>Dec</x-table.heading> | |
<x-table.heading>Total</x-table.heading> | |
</x-slot> | |
<x-slot name="body"> | |
<!-- SALES REVENUE --> | |
<livewire:reports.monthly.sales-revenue /> | |
<!-- REPAIR COST --> | |
<!-- CREDIT RETURNS --> | |
<!-- SALES PROFITS --> | |
<!-- OVERALL PERFORMANCE --> | |
<!-- DIVIDER --> | |
<x-table.thin-row> </x-table.thin-row> | |
<!-- CUSTOMER DISTRIBUTION --> | |
<!-- CUSTOMER MARGIN --> | |
<!-- CUSTOMER REGION --> | |
<!-- REGION MARGIN --> | |
<!-- CATEGORY DISTRIBUTION --> | |
<!-- CATEGORY MARGIN --> | |
<!-- SPACER --> | |
<x-table.thin-row> </x-table.thin-row> | |
</x-slot> | |
</x-table> | |
<div class="mt-8"> | |
<x-sales.reports.monthly-notes/> | |
</div> | |
</div> | |
</x-page.menued> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment