@extends('layouts.main-app') @section('title', 'Products') @section('content') @include('layouts.navbar')
@include('layouts.shop_filter')
Main Image

{{$product_details->name}}

₱{{ number_format($product_details->price, 2) }}

  • Brand: {{$product_details->brand->brand_name}}
  • Category: {{$product_details->category->name}}
  • Stock: {{$product_details->stock}}

Quantity:

1
@if(Auth::check()) @else @csrf @endif

PRODUCT DETAILS

REVIEWS

SHIPPING AND RETURNS

{!! $product_details->description !!}

RELATED PRODUCTS

@include('layouts.footer') @endsection