@extends('admin.layout') @section('content')
{{ __('Sections') }}
{{ __('Add') }}
@if (count($sections) == 0)

{{ __('NO SECTION FOUND') . '!' }}

@else
@foreach ($sections as $sectoin) @foreach ($positionValues as $index => $value) @if ($sectoin->position == $index) @endif @endforeach @endforeach
{{ __('Name') }} {{ __('Position') }} {{ __('Actions') }}
{{ @$sectoin->section_name }} {{ __($value) }}
@csrf
@endif
@endsection