@extends('layouts.app') @section('title', 'پایپ‌لاین (کانبان)') @section('content')

نمای کانبان پرونده‌ها

پرونده جدید
@foreach($columns as $status => $cases)
{{ $statusLabels[$status] ?? $status }} {{ $cases->count() }}
@foreach($cases as $case)
{{ $case->case_number }}
{{ $case->title }}
{{ \Illuminate\Support\Str::limit($case->customer?->name ?? '—', 15) }} {{ \Illuminate\Support\Str::limit($case->expert?->name ?? '—', 12) }}
@endforeach
@endforeach
@endsection