@extends('admin.layouts.app') @section('title', 'Projects') @section('page-title', 'Projects') @section('page-subtitle', 'Manage portfolio work') @section('content')

Project library

{{ $projects->total() }} project records

Add Project
@forelse ($projects as $project) @empty @endforelse
Order Project Technologies Type Status Actions
{{ $project->sort_order }}
@if ($project->preview_image) {{ $project->name }} preview @else
@endif

{{ $project->name }}

@if ($project->url) @endif

{{ str($project->description)->limit(80) }}

@foreach (collect($project->technologies)->take(3) as $technology) {{ $technology }} @endforeach @if (collect($project->technologies)->count() > 3) +{{ collect($project->technologies)->count() - 3 }} @endif
{{ $project->is_personal ? 'Personal' : 'Professional' }} {{ $project->status ? 'Published' : 'Draft' }}
@csrf @method('DELETE')

No projects found

There are no records matching the current search.

Add Project
@if ($projects->hasPages())

Showing {{ $projects->firstItem() }}-{{ $projects->lastItem() }} of {{ $projects->total() }}

{{ $projects->links() }}
@endif
@endsection