@extends('layouts.site') @section('content') @php $lang = app()->getLocale(); $name = 'name_' . $lang; $details = 'details_' . $lang; $type = 'type_' . $lang; $title = 'title_' . $lang; $description = 'description_' . $lang; $img_alt = 'img_alt_' . $lang; $slug = 'slug_' . $lang; $slug = 'slug_' . app()->getLocale(); @endphp {{ __('Services') }} {{ __('Home') }} {{ __('Services') }} @if ($services && $services->count() > 0) @foreach ($services as $service) {{ $service->$name }} {{ Str::limit($service->$description, 120, '...') }} {{ app()->getLocale() == 'ar' ? 'اقرأ المزيد' : 'Read More' }} @endforeach {{ __('load more') }} @if (app()->getLocale() == 'ar') @else @endif @endif @stop @section('scripts') @stop
{{ Str::limit($service->$description, 120, '...') }}