@extends('Admin.layout.app') @section('title', 'feedback list') @section('page-title', 'feedback list') @section('content')
Feedback List
@foreach($testimonials as $testimonial) @endforeach
Name Phone Email Date/Event Message Status Action
{{ $testimonial->name }}
{{ $testimonial->phone ?? ''}} {{ $testimonial->email ?? '' }} {{$testimonial->event_date}}
{{$testimonial->designation}}
{{$testimonial->message}} @if($testimonial->status == '1') Active @else($testimonial->status == '2') Un-Active @endif @if(($testimonial->status == '1')) @else @endif
{{ $testimonials->links() }}
@endsection @push('js') @endpush