149 lines
5.9 KiB
PHP
149 lines
5.9 KiB
PHP
<?php
|
|
|
|
namespace App\Livewire\Datatable\Studio\Catalog;
|
|
|
|
use App\Models\Bottle;
|
|
use App\Models\PriceRequest;
|
|
use App\Traits\Datatable\WithConfiguration;
|
|
use App\Traits\Datatable\WithPrependColumn;
|
|
use App\Traits\WithMediaHandler;
|
|
use Illuminate\Database\Eloquent\Builder;
|
|
use Illuminate\Support\Facades\Blade;
|
|
use Illuminate\Support\Str;
|
|
use Rappasoft\LaravelLivewireTables\DataTableComponent;
|
|
use Rappasoft\LaravelLivewireTables\Views\Column;
|
|
use Rappasoft\LaravelLivewireTables\Views\Columns\ArrayColumn;
|
|
use Rappasoft\LaravelLivewireTables\Views\Columns\ImageColumn;
|
|
|
|
class BottlesTable extends DataTableComponent
|
|
{
|
|
use WithConfiguration, WithMediaHandler, WithPrependColumn;
|
|
|
|
protected $model = Bottle::class;
|
|
|
|
protected ?int $refreshTime = 3000;
|
|
|
|
public function columns(): array
|
|
{
|
|
return [
|
|
Column::make('Nama')
|
|
->label(function ($row) {
|
|
return <<<HTML
|
|
<div>
|
|
<div>{$row->name}</div>
|
|
<span class="text-xs text-gray-400">{$row->size} ml</span>
|
|
</div>
|
|
HTML;
|
|
})
|
|
->searchable(function ($query, $searchTerm) {
|
|
$query->where('name', 'like', "%{$searchTerm}%")
|
|
->orWhere('size', 'like', "%{$searchTerm}%");
|
|
})
|
|
->html(),
|
|
|
|
Column::make('Harga Beli', 'cost_price')
|
|
->label(function ($row) {
|
|
$canSeePrice = PriceRequest::where('user_id', auth()->id())
|
|
->where('model', Bottle::class)
|
|
->whereNotNull('approved_at')
|
|
->where('expires_at', '>', now())
|
|
->exists();
|
|
|
|
if ($canSeePrice) {
|
|
return currency($row->cost_price, 'Rp');
|
|
}
|
|
|
|
$masked = Str::mask(currency($row->cost_price, 'Rp'), '*', 2);
|
|
|
|
return Blade::render('
|
|
<flux:modal.trigger name="show-price">
|
|
<flux:text class="cursor-pointer text-gray-400 hover:text-gray-600">
|
|
{{ $masked }}
|
|
</flux:text>
|
|
</flux:modal.trigger>
|
|
', ['masked' => $masked]);
|
|
})
|
|
->searchable()
|
|
->sortable()
|
|
->html()
|
|
->hideIf(auth()->user()->cannot('view cogs')),
|
|
|
|
Column::make('Harga Jual', 'sale_price')
|
|
->label(fn ($row, $column) => currency($row->sale_price, 'Rp'))
|
|
->searchable()
|
|
->sortable(),
|
|
|
|
ImageColumn::make('Gambar')
|
|
->location(fn ($row) => optional($row->getMedia('image')->first())->getUrl() ?? asset('assets/images/logo.png'))
|
|
->attributes(fn ($row) => [
|
|
'style' => 'width: 50px; height: 50px;',
|
|
'alt' => $row->name,
|
|
]),
|
|
|
|
ArrayColumn::make('Outlet')
|
|
->data(
|
|
fn ($value, $row) => $row->outlets
|
|
->filter(fn ($outlet) => auth()->user()->outlets->pluck('id')->contains($outlet->id))
|
|
->map(fn ($outlet) => [
|
|
'id' => $outlet->hash,
|
|
'bottle_id' => $row->hash,
|
|
'name' => $outlet->name,
|
|
'stock' => currency($outlet->pivot->stock, ''),
|
|
])->toArray()
|
|
)
|
|
->outputFormat(function ($index, $value) {
|
|
$route = route('studio.catalog.bottle.audit', [$value['id'], $value['bottle_id']]);
|
|
$canAudit = auth()->user()->can('audit bottle');
|
|
|
|
$tag = $canAudit ? 'div' : 'a';
|
|
$attrs = $canAudit ? '' : 'href="'.$route.'" wire:navigate';
|
|
|
|
return Blade::render("
|
|
<{$tag} {$attrs}
|
|
class='flex items-center space-x-2 bg-gray-50 border border-gray-200 rounded-lg px-2 py-1 text-xs hover:bg-gray-100 transition'>
|
|
<span class='font-medium text-gray-700'>{{ \$value['name'] }}</span>
|
|
<span class='text-[10px] text-white bg-emerald-500 rounded px-1.5 py-0.5'>{{ \$value['stock'] }}</span>
|
|
</{$tag}>
|
|
", [
|
|
'value' => $value,
|
|
'route' => $route,
|
|
]);
|
|
})
|
|
->flexRow(['class' => 'gap-2 flex-wrap']),
|
|
|
|
Column::make('Aksi')
|
|
->label(function ($row) {
|
|
$actions = '';
|
|
|
|
if (auth()->user()->can('update bottle')) {
|
|
$actions .= view('components.datatables.edit', [
|
|
'id' => $row->hash,
|
|
'editRoute' => route('studio.catalog.bottle.edit', $row->hash),
|
|
])->render();
|
|
}
|
|
|
|
if (auth()->user()->can('delete bottle')) {
|
|
$actions .= view('components.datatables.delete', [
|
|
'id' => $row->hash,
|
|
'deleteRoute' => route('studio.catalog.bottle.delete', $row->hash),
|
|
])->render();
|
|
}
|
|
|
|
return $actions;
|
|
})
|
|
->html()
|
|
->hideIf(auth()->user()->cannot('update bottle') && auth()->user()->cannot('delete bottle')),
|
|
];
|
|
}
|
|
|
|
public function builder(): Builder
|
|
{
|
|
return Bottle::select('id', 'name', 'size', 'cost_price', 'sale_price')
|
|
->with('outlets')
|
|
->whereHas(
|
|
'outlets',
|
|
fn ($q) => $q->whereIn('outlets.id', auth()->user()->outlets()->pluck('outlets.id'))
|
|
);
|
|
}
|
|
}
|