@extends('layouts.master') @section('content') {{-- Gallery Home / gallery --}} All @foreach ($albume as $albume) {{ $albume->title }} @endforeach @foreach ($gallary as $item) @php $maxLength = 10; if (strlen($item->title) > $maxLength) { $truncatedText = substr($item->title, 0, $maxLength) . '...'; // Adding ellipsis echo $truncatedText; } else { echo $item->title; } @endphp @endforeach @endsection