@extends('admin.includes.main') @section('content')
Testimonials @can('add testimonial') Create Testimonial @endcan

@foreach ($testimonials as $item) @endforeach
Name Date Socail Type Featured Description Action
{{ $item->name }} {{ $item->date }} {{ $item->social_type }} {{ ($item->featured == 1)? "Featured":"" }} {!! $item->description !!} @can('update testimonial') Edit @endcan @can('delete testimonial') Delete @endcan
@endsection