@extends('web_theme::layout.main') @php $title = 'Reference List | El DiDi Group'; $description = 'Explore our reference projects completed by El DiDi Group across various locations and clients.'; $ogImage = !empty($projects->first()->main_photo) ? asset('system/storage/app/public/project/' . $projects->first()->main_photo) : asset('themes/web/assets/images/logo.png'); @endphp @section('title', $title) @section('meta_description', $description) @section('og_image', $ogImage) @section('content') Reference List @foreach ($projects as $project) {{ $project->title }} Client: {{ $project->client }} Location : {{ $project->location }} {{-- Year: {{$project->created_at->format('Y')}} --}} @if (!empty($project->description)) {{ \Illuminate\Support\Str::limit(strip_tags($project->description), 30, '...') }} @endif learn more @endforeach View More Projects @endsection @section('pageScripts') @endsection