@extends('layouts.admin') @section('heading', 'Price Settings') @section('subheading', 'Set prices for each garment your shop offers, by your own age types.') @section('content') @include('partials.master-tabs') @if($ageTypes->isEmpty())

You haven't set up any age types yet.

Create age types first →
@else
@foreach($ageTypes as $ageType) @endforeach @forelse($shopGarments as $sg) @foreach($ageTypes as $ageType) @php $existing = $sg->prices->firstWhere('age_type_id', $ageType->id); @endphp @endforeach @empty @endforelse
Garment{{ $ageType->name }} ₹Save
{{ $sg->garmentType->name }}{{ $sg->garmentType->name_ta ? ' / '.$sg->garmentType->name_ta : '' }}
No garments offered yet.
@endif @endsection @push('scripts') @endpush