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"> |
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
<div> | |
@if($showEditor) | |
<x-panels.round-bordered> | |
<div class="mb-3 flex justify-between items-center"> | |
<h2 class="font-semibold text-blue">Create New</h2> | |
<x-buttons.thinline-button | |
clr="red" type="button" | |
wire:click="$toggle('showEditor')"> | |
@svg('solid/times-circle', 'mr-2 h-4 w-4') | |
Cancel |
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
<?php | |
namespace App\Http\Livewire\Levo; | |
use App\Models\CompanyType; | |
use App\Models\ReportsSalesTeam; | |
use Livewire\Component; | |
class AdminTypes extends Component | |
{ |
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
<div> | |
@if($showEditor) | |
<x-panels.round-bordered> | |
<div class="mb-3 flex justify-between items-center"> | |
<h2 class="font-semibold text-blue">Create New</h2> | |
<x-buttons.thinline-button | |
clr="red" type="button" | |
wire:click="$toggle('showEditor')"> | |
@svg('solid/times-circle', 'mr-2 h-4 w-4') | |
Cancel |
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
<?php | |
namespace App\Http\Livewire\Levo; | |
use App\Models\CompanyType; | |
use App\Models\ReportsSalesTeam; | |
use Livewire\Component; | |
class AdminSales extends Component | |
{ |
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
<?php | |
namespace App\Http\Livewire\Customers; | |
use App\Models\Company; | |
use App\Models\CompanyCustomerAgreement; | |
use App\Models\Country; | |
use App\Models\State; | |
use Livewire\Component; |
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
<div id="company-info"> | |
<form wire:submit.prevent="saveAndAdvance"> | |
<fieldset class="text-left mb-8 p-4 rounded-lg border-2 border-blue-200 w-full"> | |
<legend class="text-xl uppercase text-blue-500"> | |
General Information | |
</legend> |
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', 'Company Harvester') | |
<x-page.spinner-layout> | |
<x-page.header title="Company Harvester"> | |
<div>{{collect($companies)->count()}}</div> | |
</x-page.header> | |
<div class="px-8 py-4 space-y-4"> | |
<div class="w-full"> |
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
<?php | |
namespace App\Http\Livewire\Customers; | |
use App\Models\Company; | |
use Livewire\Component; | |
class CompanyHarvest extends Component | |
{ | |
public $search = ''; |
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
<div> | |
@if(!$duncan && !$henderson && !$hudson && !$muller && !$walker) | |
<x-table.row wire:key="row-{{$company['id']}}"> | |
<x-table.text-cell-grold :value="$company['company_code']" /> | |
<x-table.text-cell-grold :value="$company['legal_name']" /> | |
<x-table.cell> | |
<span class="flex space-x-10"> | |
<x-input.checkbox label="DUNCAN" wire:model="duncan" /> | |
<x-input.checkbox label="HENDERSON" wire:model="henderson" /> | |
<x-input.checkbox label="HUDSON" wire:model="hudson" /> |