@extends('layouts.admin') @section('h1') Products claims @stop @section('content')
ID | Product | Author | Subject | Comment | Created | Actions |
---|---|---|---|---|---|---|
{{$object->id}} | @if($object->product) {{$object->product->title}} @else Deleted product @endif | @if($object->author) {{$object->author->full_name}} @else Deleted user @endif | {{ucfirst($object->type)}} | @if($object->message) {{Str::limit(strip_tags($object->message), 50, '...')}} @else --- @endif | {{$object->created_at->diffForHumans()}} | {!!Form::open(['route' => ['admin.products-claims.destroy', $object->id], 'method' => 'delete'])!!} {!!Form::close()!!} |