Testimonial
{{ __('Add Testimonial') }}
@foreach ($university->testimonials()->get() as $testimonial) @endforeach
{{ __('Comment') }} {{ __('Student') }} {{ __('Status') }} {{ __('University') }} {{ __('Action') }}
{!! mb_substr($testimonial->comment,0,30) !!} {{ $testimonial->student->name }} {{ $testimonial->status == 'active' ? 'Activated' : 'Not Activated' }} {{ $testimonial->university->name }}
{{ __('master.edit') }}
@csrf @if($testimonial->status == 'active') @else @endif
{{-- --}} {{-- @include('dashbord.include.deleteModalTest', [--}} {{-- 'model_id' => 'Testimonial-' . $testimonial->id,--}} {{-- 'route' => ['testimonials.destroy', $testimonial->id],--}} {{-- 'method' => 'DELETE',--}} {{-- 'message' => 'Testimonial',--}} {{-- 'hiddenInput' => ['testimonial_id' => $testimonial->id],--}} {{-- ])--}}
@csrf @method('delete')