@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')) {{ session('status') }} × @endif {{-- Gallery Items --}} @csrf @method('DELETE') @foreach ($gallery->items as $item) {{-- Checkbox --}} @if (strtolower($gallery->type) === 'image') @else @endif {{ $item->file_path }} @endforeach {{ __('Delete Selected') }} {{-- 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 --}} {{ __('Upload Files') }} {{ __('Back') }} @endsection @push('scripts') @endpush
{{ __('Drag & drop files here or click to browse') }}