@extends('layouts.app') @section('head') @include('layouts.partials.headersection',['title'=>'Review And Rattings']) @endsection @section('content')
@csrf
@foreach($posts as $post) @endforeach
{{ __('Rattings') }} {{ __('Comment') }} {{ __('Product') }} {{ __('Name') }} {{ __('Email') }} {{ __('Created At') }}
{{ $post->rating }} {{ $post->comment }} {{ Str::limit($post->post->title,10) }} {{ $post->name }} {{ $post->email }} {{ $post->created_at->format('d-F-Y') }}
@endsection @push('js') @endpush