@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
| @if ($settings->property_country_status == 1) | {{ __('Country Name') }} | @endif{{ __('State Name') }} | {{ __('Actions') }} |
|---|---|---|---|
| @if ($settings->property_country_status == 1) | {{ strlen($state->country?->getContent($language->id)->name) > 50 ? mb_substr($state->country?->getContent($language->id)->name, 0, 50, 'UTF-8') . '...' : $state->country?->getContent($language->id)->name }} | @endif{{ strlen($state->name) > 50 ? mb_substr($state->name, 0, 50, 'UTF-8') . '...' : $state->name }} |
|