@extends('layouts.main') @section('title', 'Our Projects') @section('content') All Projects @foreach(['Industrial', 'Commercial', 'Residential'] as $cat) {{ $cat }} @endforeach @forelse ($projects as $project) @include('partials.project-card', ['project' => $project]) @empty {{ __t('No projects found in this category.') }} @endforelse {{ __t('Load More Projects') }} @endsection
{{ __t('No projects found in this category.') }}