@if (session()->has('success')) @endif @if ($errors->any()) @endif
{{ __('messages.Manage the vip guests page') }}
@foreach ($languages['data'] as $lang)
{{ __('messages.' . $lang['name'] . ' Name') }}
@endforeach
@foreach ($languages['data'] as $lang)
{{ __('messages.' . $lang['name'] . ' Description') }}
@endforeach
Images
Video
@if ($oldVideos && $oldVideos[0])

Old Video Preview

@endif @if ($videos && $videos[0])

Video Preview

@endif @can('vip-edit')
@endcan
{{-- Plan for multiple livewires in the same page with a working deletion on edits etc, without major refractoring in the livewire component.. in the dispatch from the javascript in the component, pass the oldPhotos and removedPhotos literal string names. This will allow us to isolate deletions to specific objects and livewires. use dynamic reference function public function dynamicReference ($varName) { return $this->{$varName} } in the dispatch listener, we get oldPhotos to compare ID against and removedPhotos to track deleted (but still in database) entries. Then all we need to do is still looping over every removedX array in the update or using a helper method like in other files.. --}}