@extends('backend.layout') {{-- this style will be applied when the direction of language is right-to-left --}} @includeIf('backend.partials.rtl-style') @section('content')
# | {{ __('Title') }} | {{ __('Short Text') }} | {{ __('Charge') }} | {{ __('Actions') }} |
---|---|---|---|---|
{{ $loop->iteration }} | {{ strlen($charge->title) > 30 ? mb_substr($charge->title, 0, 30, 'UTF-8') . '...' : $charge->title }} | {{ strlen($charge->short_text) > 50 ? mb_substr($charge->short_text, 0, 50, 'UTF-8') . '...' : $charge->short_text }} | {{ $currencyInfo->base_currency_symbol_position == 'left' ? $currencyInfo->base_currency_symbol : '' }}{{ $charge->shipping_charge }}{{ $currencyInfo->base_currency_symbol_position == 'right' ? $currencyInfo->base_currency_symbol : '' }} | {{ __('Edit') }} |