PHP Classes

File: resources/views/frontend/pages/product/show.blade.php

Recommend this page to a friend!
  Classes of Maniruzzaman Akash   Laravel Ecommerce Site   resources/views/frontend/pages/product/show.blade.php   Download  
File: resources/views/frontend/pages/product/show.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Laravel Ecommerce Site
Application to sell products using Laravel
Author: By
Last change:
Date: 1 year ago
Size: 2,119 bytes
 

Contents

Class file image Download
@extends('frontend.layouts.master')

@section('title')
  {{ $product->title }} | Laravel Ecommerce Site
@endsection

@section('content')

  <!-- Start Sidebar + Content -->
  <div class='container margin-top-20'>
    <div class="row">
      <div class="col-md-4">

        <div id="carouselExampleControls" class="carousel slide" data-ride="carousel">
          <div class="carousel-inner">
            @php $i = 1; @endphp
            @foreach ($product->images as $image)
              <div class="product-item carousel-item {{ $i == 1 ? 'active':'' }}">
                <img class="d-block w-100" src="{!! asset('images/products/'.$image->image) !!}" alt="First slide">
              </div>
              @php $i++; @endphp
            @endforeach
          </div>
          <a class="carousel-control-prev" href="#carouselExampleControls" role="button" data-slide="prev">
            <span class="carousel-control-prev-icon" aria-hidden="true"></span>
            <span class="sr-only">Previous</span>
          </a>
          <a class="carousel-control-next" href="#carouselExampleControls" role="button" data-slide="next">
            <span class="carousel-control-next-icon" aria-hidden="true"></span>
            <span class="sr-only">Next</span>
          </a>
        </div>

        <div class="mt-3">
          <p>Category <span class="badge badge-info">{{ $product->category->name }}</span></p>
          <p>Brand <span class="badge badge-info">{{ $product->brand->name }}</span></p>
        </div>

      </div>

      <div class="col-md-8">
        <div class="widget">
          <h3> {{ $product->title }}</h3>
          <h3> {{ $product->price }} Taka
            <span class="badge badge-primary">
              {{ $product->quantity < 1 ? 'No Item is Available' : $product->quantity.' item in stock' }}
            </span>
          </h3>
          <hr>

          <div class="product-description">
            {!! $product->description !!}
          </div>
        </div>
        <div class="widget">

        </div>
      </div>


    </div>
  </div>

  <!-- End Sidebar + Content -->
@endsection