@extends('admin.layouts.app') @section('title', 'Projects') @section('page-title', 'Projects') @section('page-subtitle', 'Manage portfolio work') @section('content')
{{ $projects->total() }} project records
| Order | Project | Technologies | Type | Status | Actions |
|---|---|---|---|---|---|
| {{ $project->sort_order }} |
@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' }} | ||
No projects foundThere are no records matching the current search. Add Project |
|||||
Showing {{ $projects->firstItem() }}-{{ $projects->lastItem() }} of {{ $projects->total() }}
{{ $projects->links() }}