@extends('layouts.admin.app') @php $lang_id = request()->route()->parameters['lang_id']; ($language = App\Models\Language::find(decrypt($lang_id))); @endphp @section('page_header') All {{ Str::plural($module_name) . " (".$language->name.")"}} @endsection @section('content')
@csrf @foreach ($result as $key => $result) @endforeach
# Name Status Action
{{ $key + 1 }} {{ $result->name }} @if ($result->status) Enable @else Disable @endif
{{-- --}}
@endsection