@extends('admin.layout.app')
@section('heading', 'Testimonials')
@section('button')
@endsection
@section('main_content')
| SL |
Photo |
Name |
Designation |
Comment |
Action |
@foreach($testimonials as $item)
| {{ $loop->iteration }} |
|
{{ $item->name }} |
{{ $item->designation }} |
{{ substr($item->comment, 0, '50') }}... |
Edit
Delete
|
@endforeach
@endsection