@extends('layouts.admin') @section('content')
{{ __('Manage Testimonials') }}
{{ __('Add New Testimonial') }}
@if(Session::has('success')) @endif
@foreach($testimonials as $testimonial) @endforeach
{{ __('Client') }} {{ __('Rating') }} {{ __('Message') }} {{ __('Options') }}
Photo
{{ $testimonial->name }}
{{ $testimonial->designation }}
@for($i=1; $i<=$testimonial->rating; $i++) @endfor
{{ $testimonial->message }}
@endsection