@extends('backend.admin-master') @section('style') @endsection @section('site-title') {{__('All Feedback')}} @endsection @section('content')
@include('backend/partials/message') @if($errors->any())
    @foreach($errors->all() as $error)
  • {{$error}}
  • @endforeach
@endif

{{__('All Feedback')}}

@foreach($all_feedback as $data) @endforeach
{{__('ID')}} {{__('Name')}} {{__('Email')}} {{__('Ratings')}} {{__('Date')}} {{__('Action')}}
{{$data->id}} {{$data->name}} {{$data->email}}
{!! ratings_markup($data->ratings) !!}
{{date("d - M - Y", strtotime($data->created_at))}}
@endsection @section('script') @endsection