@extends('administrator.layout') @section('admintitle', 'Language') @section('content')
@if (session()->has('success')) @endif @if (session()->has('error')) @endif
{{ __('text.lang') }} {{ __('text.table') }}
@forelse($data as $index => $d) @empty @endforelse
Sno. {{ __('text.name') }} {{ __('text.lang_code') }} {{ __('text.action') }}
{{ $index + 1 }} {{ $d->name }} {{ $d->lang_code }}
{{ __('text.no_records_found') }}
{{ $data->links() }}
@endsection