@extends('layouts.admin_layout') @section('content')

Manage Testimonials

@if(Session::has('success'))

×{{ Session::get('success') }}

@endif @if(Session::has('error'))

{{ Session::get('error') }}

@endif

Testimonials List

Add
@php $i=1;@endphp @foreach($testimonials as $testimonial) @endforeach
# Sorting Name Photo Designation Company Name Description Status Action
{{$i++}} {{ $testimonial->sorting}} {{$testimonial->name}} { $testimonial->photo}} {{$testimonial->designation}} {{$testimonial->company}} {{$testimonial->description}} @if( $testimonial->status == 1) Active @else In-Active@endif
{{ method_field('DELETE') }}{{csrf_field()}}
@endsection