@extends('layouts.admin') @section('title', $pageTitle) @section('content') @include('include.admin.toast')
| {{ __('SR No') }} | {{ __('Code') }} | {{ __('Name') }} | {{ __('Direction') }} | {{ __('Default') }} | {{ __('Status') }} | {{ __('Action') }} |
|---|---|---|---|---|---|---|
| {{ $languages->firstItem() + $loop->index }} | {{ $language->code }} | {{ $language->name }} | {{ strtoupper($language->direction) }} | @if ($language->default == 'yes') {{ __('Yes') }} @else {{ __('No') }} @endif | @if ($language->status == 'active') {{ __('Active') }} @else {{ __('Inactive') }} @endif | {{ __('Edit') }} {{ __('Delete') }} |
| {{ __('No Records Found') }} |