@extends('admin.adminlayout') @section('page_title') {{__("Languages")}} - @endsection @section('content')
@include('starter-kit::component.err')
@csrf @foreach ($langs as $n) @endforeach
{{__("Name")}} {{__("Tag")}} {{__("Direction")}} {{__("Action")}}
{{$n->id}} {{$n->name}} {{$n->tag}} @if($n->rtl) {{__("RTL")}} @else {{__("LTR")}} @endif   {{__("Edit")}}   {{__("Delete")}}
@include('starter-kit::component.bulk',['actions' => []])
{{$langs->links()}}
@endsection