@extends('super_admins.layouts.master') @section('title') View Testimonial @endsection @section('css') @endsection @section('content') @if ($errors->any()) @endif

Testimonial

Title

{{ $testimonial->name ? $testimonial->name : '--' }}

Image

@if ($testimonial->image) {{ $testimonial->slug }} @else -- @endif

Slug

{{ $testimonial->slug ? $testimonial->slug : '--' }}

Status

{{ $testimonial->is_active ? 'Active' : 'Inactive' }}

Created At

{{ date_format($testimonial->created_at, 'd-m-Y') }}

Description

{!! $testimonial->description !!}

@endsection @section('scripts') @endsection