@extends('layouts.app')
@section('title', 'Gallery')
@section('content')
{{--
--}}
{{--
--}}
@if (count($images) > 0)
@foreach ($images as $image)
@endforeach
{{ $images->links() }}
@else
There are currently no images in gallery.
@endif
@endsection()