/
home
/
sjslayjy
/
public_html
/
theweavenest
/
resources
/
views
/
Admin
/
Upload File
HOME
@extends('admin/layout') @section('page_title', 'All Product Images') @section('all_product_images_select', 'active') @section('container') @if(session()->has('message')) <div class="sufee-alert alert with-close alert-success alert-dismissible fade show"> {{ session('message') }} <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <style> div.scroll-container { background-color: #333; overflow: auto; white-space: nowrap; padding: 10px; } div.scroll-container img { padding: 10px; } </style> </head> <body> <div class="scroll-container"> <!-- Place your images here --> @foreach($all_product_images as $image) <img src="{{ asset('storage/media/' . $image->images) }}" alt="Product Image"> @endforeach </div> </body> </html> @endsection