@extends('layouts.admin') @section('title', 'Decant Sizes ยท Aromaniacs ERP') @section('overline', 'Catalog') @section('heading', 'Decant Sizes') @section('content')
@if ($search !== '') @endif
@if ($sizes->isEmpty())

No decant sizes found.

Create a size to power SKU pricing logic.

@else @foreach ($sizes as $size) @endforeach
Thumb Label Volume Multiplier Bottle Cost Sort Status Actions
@if ($size->resolvedImageUrl()) {{ $size->label }} thumbnail @else @endif {{ $size->label }} {{ number_format((float) $size->volume_ml, 2) }} ml {{ number_format((float) $size->multiplier, 3) }} {{ number_format((float) $size->bottle_cost, 2) }} {{ $size->sort_order }} @if ($size->is_active) Active @else Hidden @endif
@csrf @method('PATCH')
@csrf @method('DELETE')
{{ $sizes->links() }}
@endif
@endsection