@extends('admin.layouts.app') @section('title', 'All Shows') @section('section') @php if (!empty($event->content)) { // Decode the 'content' JSON string into an associative array. $decodedData = json_decode($event->content, true); } @endphp

Shows Form

@csrf

Shows Section


Shows Section

@foreach($get_event_products as $get_event_product) @endforeach
Title Price Start Date End Date Status Image Edit Delete
{{$get_event_product->title}} {{ isset($get_event_product->price) ? number_format($get_event_product->price) : '' }} {{$get_event_product->start_date}} {{$get_event_product->end_date}} {{$get_event_product->status == '1' ? 'Approve' : 'Not Approve'}} Edit Delete
@endsection @section('script') @endsection