@extends('front.layout.app') @section('title', 'Product Page') @section('content')

{{ 'Product Detail' }}

@if ($find)
image

{{ $find->name }}

$ {{ $find->price }}

{{ $find->description }}

@if (Auth::check() && Auth::user()->hasRole('user')) Add to cart @endif
@endif @endsection