@extends('admin.layout.app')
@section('heading', 'Testimonials')
@section('rightside_button')
Add New
@endsection
@section('main_content')
Star Count |
Status |
Photo |
Comment |
Name |
Position |
Actions |
@foreach ($all_data as $item)
{{ $item->star_count }} |
{{ ucfirst($item->status) }} |
@if ($item->photo)
@endif
|
{{ $item->comment }} |
{{ $item->name }} |
{{ $item->position }} |
Edit
Delete
|
@endforeach
@endsection