@extends('../layout/' . $layout) @section('subhead') Product Detail @endsection @section('subcontent') @php $currency = DB::table('systemflag') ->where('name', 'Currency') ->select('value') ->first(); @endphp

Product Details

@foreach ($astroMallDetail as $astroMall)
Product image
{{ $astroMall->name }}
{{ $astroMall->features }}
{{ $currency->value }} {{ $astroMall->amount }}
@foreach ($astroMall->questionAnswer as $product)
{{ $product->question }}
{{ $product->answer }}
@endforeach
@foreach ($astroMall->productReview as $review)
Astrologer image
{{ $review->userName }}
({{ $review->rating }})
{{ date('j F Y', strtotime($review->created_at)) }}
{{ $review->review }}
@endforeach
@endforeach @endsection