@extends('layouts.admin') @section('title', 'Detail Anggota Tim') @section('content')

Detail Anggota Tim

Profil lengkap {{ $team->name }}

Profil Anggota Tim

@if($team->is_active) Aktif @else Nonaktif @endif
@if($team->photo)
{{ $team->name }}
@else
@endif

{{ $team->name }}

{{ $team->position }}

@if($team->bio)

{{ $team->bio }}

@endif
@if($team->email) @endif @if($team->phone) @endif
@if($team->social_links)
Media Sosial
@if(isset($team->social_links['linkedin']) && $team->social_links['linkedin']) LinkedIn @endif @if(isset($team->social_links['twitter']) && $team->social_links['twitter']) Twitter @endif @if(isset($team->social_links['instagram']) && $team->social_links['instagram']) Instagram @endif @if(isset($team->social_links['facebook']) && $team->social_links['facebook']) Facebook @endif
@endif

Informasi Detail

Nama Lengkap
{{ $team->name }}
Posisi/Jabatan
{{ $team->position }}
@if($team->email)
Alamat Email
{{ $team->email }}
@endif @if($team->phone)
Nomor Telepon
{{ $team->phone }}
@endif
Status
@if($team->is_active) Aktif @else Nonaktif @endif
Urutan Tampil
{{ $team->sort_order }}
@if($team->bio)
Bio/Deskripsi
{{ $team->bio }}
@endif

Status & Info

Status Anggota @if($team->is_active) Aktif @else Nonaktif @endif
Urutan Tampil {{ $team->sort_order }}
@if($team->photo)
Foto Profil Ada
@else
Foto Profil Belum ada
@endif
Dibuat

{{ $team->created_at->format('d M Y, H:i') }}

Terakhir Diupdate

{{ $team->updated_at->format('d M Y, H:i') }}

Aksi Cepat

Edit Profil @if($team->email) Kirim Email @endif

Preview Frontend

Tampilan di halaman website

@if($team->photo) {{ $team->name }} @else
@endif

{{ $team->name }}

{{ $team->position }}

@if($team->bio)

{{ Str::limit($team->bio, 80) }}

@endif @if($team->linkedin || $team->twitter || $team->instagram)
@if($team->linkedin) @endif @if($team->twitter) @endif @if($team->instagram) @endif
@endif
@push('scripts') @endpush @endsection