@extends('admin.layouts.master') @section('title', 'Dashboard') @section('content')
Feedback
@if(Session::has('message')) @endif

Feedback List

@foreach ($data as $row) @endforeach
S.No Client Name Satisfied About our service Better next time Permission Posted Date Action
{{$loop->index+1}} {{$row->user->full_name}} {{$row->satisfied}} {{$row->about_our_service}} {{$row->better_next_time}} {{$row->permission}} {{Date('d-M-Y', strtotime($row->created_at))}} @if ($row->publish == 0)   @else   @endif
@endsection @section('scripts') @endsection