@extends('layouts.admin') @section('h1') {{$product->title}} reviews @stop @section('content')
Product | Author | Rating | Review | Created | Actions |
---|---|---|---|---|---|
{{ $object->reviewable->title}} | {{ $object->author->full_name}} | {{ $object->rating }} | {{ \Str::limit(strip_tags($object->review ), 20)}} | {{$object->created_at->diffForHumans()}} | {!!Form::open(['route' => ['admin.products-reviews.destroy', $product, $object], 'method' => 'delete'])!!} {!!Form::close()!!} |