@extends('frontend.layout') @section('page_title', $single_product->name ?? 'Product Not Found') @section('styles') @endsection @section('content')
@if($single_product)
{{$single_product->name ?? ''}}

{{$single_product->name ?? ''}}

৳ {{$single_product->price ?? ''}}

{!! $single_product->desc ?? '' !!}


@else

Product Not Found

The requested product could not be found.

@endif
@endsection @section('scripts') @endsection