@extends('admin.layouts.main') @section('title') Testimonial Detail @endsection @section('content')
@include("admin.common.sidebar")

{{$testimonial->name}}

@permission('testimonial-write')Edit@endpermission

{{ @trans('testimonials.details') }}

{{$testimonial->person_name}}

{{$testimonial->person_position}}

@if($testimonial->industry)

{{$testimonial->industry->name}}

@else

-

@endif
@if($testimonial->countries)

{{$testimonial->countries->name}}

@else

-

@endif
@if($testimonial->commancompanies)

{{$testimonial->commancompanies->name}}

@else

-

@endif

{{ @trans('testimonials.message') }}

{!!$testimonial->message!!}

@endsection