@extends('Dashboard.layouts.app') @section('search') @endsection @section('style') @endsection @section('product_index','active') @section('main_content')

Product Details

@foreach($product->Photos as $p)
@endforeach
@foreach($product->Photos as $p)
@endforeach

{{ $product->name }}

Published : {{ $product->created_at->format('d M Y') }}

Type :

{{ $product->type->name }}

Available Stocks :

@if($product->stock == 0)
OUT OF STOCK
@else
In STOCK
@endif

Category :

{{ $product->Category->name }}

Brand :

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

Total Revenue :

{{ $product->orderProduct->sum('sub_price') }}

No. of Orders :

{{ $product->orderProduct->count() }}
Product Description :
@endsection @section('script') @endsection