@extends('master') @push('styles') @endpush @section('content')
@include('admin.layout.breadcrumbs', [ 'title' => __('Event Gallery'), 'headerData' => __('Event'), 'url' => 'events', ])

{{ __('Event Gallery') }}

{{-- Status Alert --}} @if (session('status')) @endif {{-- Gallery Items --}}
@csrf @method('DELETE')
@foreach ($gallery->items as $item)
{{-- Checkbox --}}
@if (strtolower($gallery->type) === 'image') {{ $item->file_path }} @else @endif
{{ $item->file_path }}
@endforeach

{{-- Upload Form --}}
@csrf

{{ __('Drag & drop files here or click to browse') }}

{{ strtolower($gallery->type) == 'image' ? 'PNG, JPG, JPEG, SVG, GIF' : 'MP4, MOV, AVI, WEBM' }}
{{-- Preview --}}
@endsection @push('scripts') @endpush