@extends('layouts.main')
@section('title', 'Shop Management')
@push('styles')
@endpush
@section('content')
@if(session('success'))
✓ {{ session('success') }}
@endif
Existing Shop Items
Total: {{ count($shopItems) }} Items
@forelse($shopItems as $item)
@if($item->video)
@elseif($item->media)
@if($item->media_type == 'video')
@else
 }})
@endif
@else
🛍️
@endif
{{ $item->name }}
{{ ($item->video || $item->media_type == 'video') ? '📹 Video' : '🛍️ Product' }}
₹{{ number_format($item->price, 2) }}
{{ $item->description }}
@empty
🛒
No Shop Items Added Yet
Use the form above to add your first product or video asset.
@endforelse
@endsection