diff --git a/resources/views/tenants/create.blade.php b/resources/views/tenants/create.blade.php new file mode 100644 index 00000000..6df94dff --- /dev/null +++ b/resources/views/tenants/create.blade.php @@ -0,0 +1,192 @@ +@extends('layouts.app') + +@section('title', '테넌트 생성') + +@section('content') +
| ID | +회사명 | +코드 | +상태 | +이메일 | +전화번호 | +사용자 | +부서 | +메뉴 | +역할 | +생성일 | +액션 | +
|---|---|---|---|---|---|---|---|---|---|---|---|
| + {{ $tenant->id }} + | +
+ {{ $tenant->company_name }}
+ @if($tenant->ceo_name)
+ 대표: {{ $tenant->ceo_name }}
+ @endif
+ |
+ + {{ $tenant->code }} + | ++ + {{ $tenant->status_label }} + + | ++ {{ $tenant->email ?? '-' }} + | ++ {{ $tenant->phone ?? '-' }} + | ++ {{ $tenant->users_count ?? 0 }} + | ++ {{ $tenant->departments_count ?? 0 }} + | ++ {{ $tenant->menus_count ?? 0 }} + | ++ {{ $tenant->roles_count ?? 0 }} + | ++ {{ $tenant->created_at->format('Y-m-d') }} + | ++ @if($tenant->deleted_at) + + + @if(auth()->user()?->is_super_admin) + + @endif + @else + + + 수정 + + + @endif + | +
| + 등록된 테넌트가 없습니다. + | +|||||||||||
+ 전체 {{ $tenants->total() }}개 중 + {{ $tenants->firstItem() }} + ~ + {{ $tenants->lastItem() }} +
+