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