id())
->where('module', 'parfum')
->approved()
->where('finalized_at', '>', now()->subMinute(10))
->exists();
return [
Column::make('Nama')
->label(function ($row) {
return <<
{$row->name}
{$row->sku}
HTML;
})
->searchable(function ($query, $searchTerm) {
$query->where('perfumes.name', 'like', "%{$searchTerm}%")
->orWhere('sku', 'like', "%{$searchTerm}%");
})
->html(),
ArrayColumn::make('Kategori')
->data(fn ($value, $row) => $row->categories->pluck('name')->toArray())
->outputFormat(fn ($index, $value) => Blade::render(''.$value.''))
->flexRow(['class' => 'gap-2 flex-wrap']),
Column::make('Merek', 'brand.name')->searchable()->sortable(),
Column::make('Concentration', 'concentration')
->label(fn ($row, $column) => Blade::render(''.$row->concentration->label().''))
->html(),
Column::make('Harga Beli', 'cost_price')
->label(function ($row) use ($canSeePrice) {
if ($canSeePrice) {
return currency($row->cost_price, 'Rp');
}
$masked = Str::mask(currency($row->cost_price, 'Rp'), '*', 2);
return Blade::render('
{{ $masked }}
', ['masked' => $masked]);
})
->searchable()
->sortable()
->html()
->hideIf(! auth()->user()->hasRole(['Developer', 'Owner'])),
Column::make('Harga Jual', 'sale_price')
->label(fn ($row, $column) => currency($row->sale_price, 'Rp'))
->searchable()
->sortable(),
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,
'perfume_id' => $row->hash,
'name' => $outlet->name,
'stock' => currency($outlet->pivot->stock, ''),
])->toArray()
)
->outputFormat(function ($index, $value) {
$route = route('studio.catalog.perfume.audit', [$value['id'], $value['perfume_id']]);
$canAudit = auth()->user()->can('audit perfume');
$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'>
{{ \$value['name'] }}
{{ \$value['stock'] }}
{$tag}>
", [
'value' => $value,
'route' => $route,
]);
})
->flexRow(['class' => 'gap-2 flex-wrap']),
Column::make('Aksi')
->label(function ($row) {
$actions = '';
if (auth()->user()->can('update perfume')) {
$actions .= view('components.datatables.edit', [
'id' => $row->hash,
'editRoute' => route('studio.catalog.perfume.edit', $row->hash),
])->render();
}
if (auth()->user()->can('delete perfume')) {
$actions .= view('components.datatables.delete', [
'id' => $row->hash,
'deleteRoute' => route('studio.catalog.perfume.delete', $row->hash),
])->render();
}
return $actions;
})
->html()
->hideIf(auth()->user()->cannot('update perfume') && auth()->user()->cannot('delete perfume')),
];
}
public function builder(): Builder
{
return Perfume::select(
'perfumes.id',
'sku',
'perfumes.name',
'concentration',
'cost_price',
'sale_price',
'base_notes',
'middle_notes',
'top_notes'
)
->with([
'categories',
'brand',
'outlets',
])
->whereHas(
'outlets',
fn ($q) => $q->whereIn('outlets.id', auth()->user()->outlets()->pluck('outlets.id'))
);
}
}