@extends('layouts.main') @push('nav_title') {{-- User--}} Enzy @endpush @section('page_title') @endsection @section('profile') @include('layouts/profile') @endsection @section('side_bar') @include('layouts/side_bar') @endsection @section('main_div') @if($product_info)

Product Details

{{$product_info['name']}}

Price
${{$product_info['price']}}

@if($product_info['quantity'] > 0) IN STOCK @endif Description
  • {{$product_info['descryption']}}
  • {{--
  • Fully assembled! No assembly required
  • --}}
@else
Product not found.
@endif

Related Products

@foreach($products->take(4) as $product)
@if($product->quantity > 0) @else @endif
{{$product->name}}
{{$product->price}}
@endforeach
@include('layouts.cart')
@endsection