@extends('layouts.user')
@section('page-title', 'Customers Testmonial')
@section('page-title-body', 'Customers Testmonial')
@section('active-link-7', 'active-link')
@section('main-theme')
Customer Testmonials
| Created At | Customer Name | Travel From-To | Testmonial | Status | |
@foreach($testmonial as $data)
| {{ date_format(date_create($data->created_at), 'd M Y')}} | {{$data->customer_name}} | {{$data->travell_from}} |
{{$data->texts}} |
@if($data->status == 0)
Active
@else
Inactive
@endif
|
@if($data->status == 0)
@else
@endif
|
@endforeach
@endsection
@push('scripts')
@endpush