@extends('layouts.admin') @section('heading', 'Addons') @section('subheading', 'Extra services staff can attach to a garment — buttons, embroidery, lining etc.') @section('actions') + New addon @endsection @section('content') @include('partials.master-tabs') @if (session('status'))
{{ session('status') }}
@endif
@forelse($addons as $addon) @empty @endforelse
Name Applies to Price Status Actions
{{ $addon->name }} @if($addon->name_ta) / {{ $addon->name_ta }} @endif {{ $addon->garmentTypes->pluck('name')->join(', ') ?: '—' }} ₹{{ number_format($addon->price, 0) }} @if($addon->is_active) Active @else Inactive @endif Edit
@csrf @method('DELETE')
No addons yet.
@endsection