@extends('backend.layouts.master') @section('title') Testimonials @endsection @section('main-content') @include('backend.layouts.notification')
Testimonials
@if(count($testimonials)>0) @foreach($testimonials as $testimonial) @endforeach
ID Name Position Photo Status Action
{{$testimonial->id}} {{$testimonial->name}} {{$testimonial->position}} @if($testimonial->photo) {{ Storage::url($testimonial->photo) }} @else avatar.png @endif @if($testimonial->status=='active') {{$testimonial->status}} @else {{$testimonial->status}} @endif
@csrf @method('delete')
@else
No testimonials found!!! Please add testimonial
@endif
@endsection