@extends('layouts.panel') @section('title','Projeler') @section('content')

Projeler

Tüm projelerini buradan yönet

@foreach($projects as $p)
{{ $p->status === 'archived' ? 'Arşiv' : 'Aktif' }} {{ $p->name }}
@if($p->description)

{{ \Illuminate\Support\Str::limit($p->description, 110) }}

@endif
@endforeach @if($projects->isEmpty())
Henüz proje yok.
@endif
@endsection