/
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> /* CSS for horizontal scrollable image gallery */ div.scroll-container { background-color: wheat; overflow-x: auto; /* Horizontal scroll */ white-space: nowrap; /* Prevent line breaks */ padding: 10px; } div.scroll-container img { width: 400px; /* Adjust width as needed */ height: auto; /* Maintain aspect ratio */ padding: 5px; /* Adjust padding as needed */ } </style> </head> <body> <div class="scroll-container"> <!-- Iterate over product images and display them --> @foreach($attr_product_images as $image) <img src="{{ asset('storage/media/' . $image->attr_image) }}" class="img-thumbnail" alt="Product Image"> @endforeach </div> </div> </body> </html> @endsection