@extends('adminlte::page') @section('content')

Edit Event Gallery

Edit Event Gallery Form

@csrf

@foreach ($photos as $index => $photo)
is_primary ? 'checked' : '' }} onclick="selectPrimaryImage(this)"> Thumbnail
@endforeach

@if ($photos->isEmpty())
Thumbnail

@endif
{{--
@foreach($videos as $index => $video)
is_primary ? 'checked' : '' }} onclick="selectPrimaryVideo(this)">
@endforeach

@if ($videos->isEmpty())

@endif
--}}
@foreach($videos->whereNotNull('link') as $index => $video)
is_primary ? 'checked' : '' }} onclick="selectPrimaryVideo(this)"> Thumbnail
@endforeach
{{--
@foreach($videos as $index => $video)
is_primary ? 'checked' : '' }} onclick="selectPrimaryVideo(this)">
@if($video->event_video_file)

Current File: {{ $video->event_video_file }}

@endif
@endforeach

@if ($videos->isEmpty())

@endif
--}}
@foreach($videos->whereNotNull('event_video_file') as $index => $video)
is_primary ? 'checked' : '' }} onclick="selectPrimaryVideo(this)"> Thumbnail
@endforeach
{{--
@foreach($videos as $index => $video)
is_primary ? 'checked' : '' }} onclick="selectPrimaryVideo(this)">
@if($video->event_video_file)

Current File: {{ $video->event_video_file }}

@endif
@endforeach @if ($videos->isEmpty())
@endif
--}}
@stop @section('js') @stop @section('css') @stop