You've already forked Epicnabbo-Catalogus-Updated-Daily
26 lines
775 B
PHP
26 lines
775 B
PHP
<x-app-layout>
|
|
@push('title', __('Photos'))
|
|
|
|
<div class="col-span-12">
|
|
<x-content.content-card icon="camera-icon">
|
|
<x-slot:title>
|
|
{{ __('Latest Photos') }}
|
|
</x-slot:title>
|
|
|
|
<x-slot:under-title>
|
|
{{ __('Have a look at some of the great moments captured by users around the hotel.') }}
|
|
</x-slot:under-title>
|
|
|
|
<x-photos :photos="$photos" />
|
|
</x-content.content-card>
|
|
|
|
{{ $photos->links() }}
|
|
</div>
|
|
|
|
@push('javascript')
|
|
<script src="https://cdn.jsdelivr.net/npm/@fancyapps/ui@4.0/dist/fancybox.umd.js"></script>
|
|
@endpush
|
|
|
|
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@fancyapps/ui/dist/fancybox.css" />
|
|
</x-app-layout>
|