@extends('layouts.main') @section('title', 'Shop Management') @push('styles') @endpush @section('content')

🛒 Shop Management

Add and manage products, eBooks, and digital items for your practice store.

@if(session('success'))
{{ session('success') }}
@endif

🛍️ Add New Product or Media Item

@csrf
Upload product thumbnail photo (JPG, PNG, WEBP).
Upload teaser video file (MP4, WEBM, MOV up to 50MB).

Existing Shop Items

Total: {{ count($shopItems) }} Items
@forelse($shopItems as $item)
@if($item->video) @elseif($item->media) @if($item->media_type == 'video') @else {{ $item->name }} @endif @else
🛍️
@endif

{{ $item->name }}

{{ ($item->video || $item->media_type == 'video') ? '📹 Video' : '🛍️ Product' }}
₹{{ number_format($item->price, 2) }}

{{ $item->description }}

@csrf @method('DELETE')
@empty
🛒

No Shop Items Added Yet

Use the form above to add your first product or video asset.

@endforelse
@endsection