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