@extends('admin.layouts.master')
@section('content')
{{ __('#') }} |
{{ __('Icon') }} |
{{ __('Title') }} |
{{ __('Status') }} |
{{ __('Action') }} |
@foreach ($whyUs as $key => $why)
{{ ++$key }}
|
|
{!! json_decode($why->title)->en !!}
|
@if ($why->status == 'active')
Active
@else
InActive
@endif
|
|
@endforeach
@endsection