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