@extends('layouts.app') {{-- Or your main frontend layout --}} @section('content')

{{ setting('digitalvocano_portfolio_title', 'Our Projects') }}

@if($projects->isEmpty())

No projects available at the moment. Check back soon!

@else
@foreach ($projects as $project)
@if($project->featured_image_url) {{ $project->name }} @else No image available @endif

{{ $project->name }}

{{ $project->short_description ?: 'No description available.' }}

View Details →
@endforeach
{{ $projects->links() }}
@endif
@endsection