@extends('layouts.admin') @section('title', 'Kelola Proyek') @section('content')
Kelola portofolio proyek perusahaan
| Proyek | Kategori | Klien | Status | Selesai | Aksi |
|---|---|---|---|---|---|
|
@if($project->featured_image)
{{ $project->title }}
@if($project->is_featured)
Unggulan
@endif
{{ Str::limit($project->short_description ?? $project->description, 60) }}
|
{{ $project->category->name ?? '-' }} |
{{ $project->client_name ?? '-' }}
| @if($project->is_active) Aktif @else Tidak Aktif @endif |
@if($project->end_date)
{{ $project->end_date->format('d M Y') }}
@if($project->end_date->isPast())
Selesai
@else
Berlangsung
@endif
@else
-
Belum ditentukan
@endif
| |