@extends('layouts.app') @section('title', '영업파트너 상세') @section('content')
레벨 {{ $level }} 영업파트너
이 파트너는 승인 대기 중입니다. 첨부된 서류를 확인 후 승인 또는 반려해주세요.
{{ $partner->rejection_reason }}
@if($partner->approver)처리자: {{ $partner->approver->name }} ({{ $partner->approved_at->format('Y-m-d H:i') }})
@endif보유 중인 역할을 하위 파트너에게 위임할 수 있습니다. 위임하면 해당 역할이 제거됩니다.
{{ $document->original_name }}
{{ $document->formatted_size }}
@if($document->description){{ $document->description }}
@endif| 이름 | 역할 | 연락처 | 상태 |
|---|---|---|---|
| {{ $child->name }} | @foreach($child->userRoles as $userRole) @php $roleColor = match($userRole->role->name ?? '') { 'sales' => 'bg-blue-100 text-blue-800', 'manager' => 'bg-purple-100 text-purple-800', default => 'bg-gray-100 text-gray-800', }; $roleLabel = match($userRole->role->name ?? '') { 'sales' => '영업파트너', 'manager' => '상담매니저', default => $userRole->role->name ?? '-', }; @endphp {{ $roleLabel }} @endforeach | {{ $child->phone ?? '-' }} | {{ $child->approval_status_label }} |