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