@extends('layouts.main') @section('styles') @endsection @section('content') @include('includes.smallHeader')

{{$product->name}}

{{$product->price}} PKR


Availability: @if($product->stock == 1) Available @else Out Of Stock @endif

Brand: {{$product->brand->name}}

{{$product->details}}


  • Available Sizes:
  • @foreach($product->sizes as $size)
  • {{$size->name}}
  • @endforeach
  • Available Colors:
  • @foreach($product->colors as $color)
  • {{$color->name}}
  • @endforeach
QTY:

  • Description:
  • {{$product->description}}.

    @endsection @section('scripts') @endsection