@extends('layouts.admin') @section('page-title') Room Gallery @endsection @section('page-top-title') Room Gallery @endsection @section('content-body')
{{-- Messages --}} @include('backend.inc.messages')

Room Gallery - {{ $establishment ? \App\Models\Establishment::find($establishment)->name : '' }}

Add Gallery Image(s) {{-- Add Gallery Item Modal --}}
@foreach ($galleryImages as $image) @php //$imageUrl = asset('storage/backend-resources/images/profile/profile.png'); $imageUrl = asset( 'storage/Establishments/' . \App\Models\Establishment::find($establishment)->name . '/' . \App\Models\EstablishmentRoom::find($establishment_room)->name . '/' . $image->image, ); @endphp @endforeach
ID Image Associated Room Actions
{{ $image->id }} {{ \App\Models\EstablishmentRoom::find($establishment_room)->name }} {{-- Delete --}}
@endsection @section('page-scripts') {{-- --}} @endsection