@extends('admin.layouts.template') @section('main') {{-- Message--}} @if(session('success'))

Success

{{ session('success') }}

@endif

Testimonies

Manage Your Testimonies
@forelse($testimonies as $testimony) @empty @endforelse
id name active image testimony order slug created_at actions
{{$testimony->id}}
{{$testimony->name}}
active == 1 ? 'checked' : '' }} />
{{$testimony->slug}}
{{$testimony->order}}
{{$testimony->testimony}}
{{$testimony->slug}}
{{$testimony->created_at}}
Empty

No testimonies present

Add A Testimony
@endsection