@include('header') @php $permissions = json_decode(session('permissions'), true); $userType = session('user_type'); @endphp
Testimonial Management

Testimonials

Add Testimonial
@php $sno = 1; @endphp @foreach($testimonials as $item) @endforeach
# Name Title Rating Image Status Order Action
{{ $sno++ }} {{ $item->name }} {{ $item->title ?? '-' }} {{ $item->rating }} ⭐ @if($item->image) testimonial @else - @endif @if($item->active) Active @else Inactive @endif {{ $item->order }}
@include('footer')