@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
{{ __('Countries') }}
@includeIf('backend.partials.languages')
{{ __('Add') }}
@if (count($countries) == 0)

{{ __('NO COUNTRIES FOUND') . '!' }}

@else
@foreach ($countries as $country) @endforeach
{{ __('Name') }} {{ __('Actions') }}
{{ strlen($country->countryContent?->name) > 50 ? mb_substr($country->countryContent?->name, 0, 50, 'UTF-8') . '...' : $country->countryContent?->name }}
@endif
{{-- create modal --}} @include('backend.property.country.create') {{-- edit modal --}} @include('backend.property.country.edit') @endsection