Files
project/app/View/Composers/TaxDropdown.php

17 lines
316 B
PHP

<?php
namespace App\View\Composers;
use App\Models\Taxrate;
use Illuminate\View\View;
class TaxDropdown
{
public function compose(View $view): void
{
$standard = Taxrate::where('active', true)->first();
$view->with(['tax_rates' => TaxRate::all(), 'standard' => $standard->rate]);
}
}