@extends('layouts.admin') @section('h1') Product: #{{$object->id}} @stop @section('content')
Details
{{$object->reference}} (#{{$object->id}})

{{$object->title}}

{!!$object->description!!}



{{$object->category->title}} / {{$object->subcategory->title}}

{{ $object->price_amount}} {{$object->price_currency->symbol}} / {{$object->price_unit->title}}

{{$object->reviews_count}} / {{$object->reviews_rating}}

{{$object->views_count}}

{{$object->is_active ? 'yes' : 'no'}}

{{$object->created_at->format('d/m/Y H:i')}}

Media
@foreach($object->media as $media) @endforeach

Model dump

{{-- --}}
@dump($object)
@stop @section('footer_js') @stop