@extends('admin.layouts.grid')
@section('section', translate('Sections'))
@section('title', translate('Home Sections'))
@section('container', 'container-max-lg')
@section('content')
@if ($homeSections->count() > 0)
@foreach ($homeSections as $homeSection)
-
@if ($homeSection->isActive())
{{ translate('Active') }}
@else
{{ translate('Disabled') }}
@endif
@endforeach
@else
@include('admin.partials.empty', ['empty_classes' => 'empty-lg'])
@endif
@push('top_scripts')
@endpush
@push('styles_libs')
@endpush
@push('scripts_libs')
@endpush
@endsection