diff options
author | Mateja <mail@matejamaric.com> | 2020-11-07 13:28:13 +0100 |
---|---|---|
committer | Mateja <mail@matejamaric.com> | 2020-11-07 13:28:13 +0100 |
commit | b74cd28337d9774e37e0dbc8e541ea9026c6d7f7 (patch) | |
tree | 56b1e90069e1a1d37bda8e2697252c3dfca7a02a /resources/views | |
parent | 5bdda7444013a0f9d87831daf29760a42ea29ee8 (diff) | |
download | yota-laravel-b74cd28337d9774e37e0dbc8e541ea9026c6d7f7.tar.gz yota-laravel-b74cd28337d9774e37e0dbc8e541ea9026c6d7f7.zip |
Fixed gallery delete...
Diffstat (limited to 'resources/views')
-rw-r--r-- | resources/views/pages/gallery.blade.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/resources/views/pages/gallery.blade.php b/resources/views/pages/gallery.blade.php index 502cb63..cd64b52 100644 --- a/resources/views/pages/gallery.blade.php +++ b/resources/views/pages/gallery.blade.php @@ -18,7 +18,7 @@ <div class="col-lg-6"> <div class="card mb-3"> <div class="card-img-top"> - <img class="img-fluid" src="{{ asset($image->path . $image->name) }}" alt="{{ $image->name }}" loading="lazy"> + <img class="img-fluid" src="{{ asset('storage/' . $image->path . $image->name) }}" alt="{{ $image->name }}" loading="lazy"> </div> @auth <div class="card-body"> |