{{-- resources/views/projects/index.blade.php --}} @extends('layouts.app') @section('title', 'Projects') @section('content')
@if(session('success'))
@endif
@forelse($projects as $project) {{-- Image thumbnail --}} {{-- Action buttons --}} @empty @endforelse
# Image Title Client Actions
{{ $loop->iteration + ($projects->currentPage() - 1) * $projects->perPage() }} @if($project->image_url) {{ $project->title }} @else
@endif
{{ $project->title }} @if($project->website_link) @endif {{ $project->client_name ?? '—' }}
Edit
@csrf @method('DELETE')
No projects yet. Create one?
{{-- Pagination --}}
@endsection @push('scripts') @endpush