diff options
author | Mateja <mail@matejamaric.com> | 2020-11-12 18:06:25 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-11-12 18:06:25 +0100 |
commit | 470a54a8c6e92416a8245af0bc87170ad934fae0 (patch) | |
tree | edc8f85fcd723323e51f97b1bb070915f30c334c /resources | |
parent | 5ee0430e9dcc54c89defe8cc0cb665565591321e (diff) | |
download | yota-laravel-470a54a8c6e92416a8245af0bc87170ad934fae0.tar.gz yota-laravel-470a54a8c6e92416a8245af0bc87170ad934fae0.zip |
Gallery pagination fix...
Diffstat (limited to 'resources')
-rw-r--r-- | resources/views/pages/gallery.blade.php | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/resources/views/pages/gallery.blade.php b/resources/views/pages/gallery.blade.php index cd64b52..de2a13c 100644 --- a/resources/views/pages/gallery.blade.php +++ b/resources/views/pages/gallery.blade.php @@ -28,9 +28,12 @@ </div> </div> @endforeach + </div> + <div class="row"> {{ $images->links() }} + </div> @else <strong class="text-center">There are currently no images in gallery.</strong> - @endif </div> + @endif @endsection() |