@extends('backend.layouts.main') @section('title') Team Member Details @endsection @section('content')

Team Member Details: {{ $team->name }}

@if (session('success'))
{{ session('success') }}
@endif

Basic Information

ID:
{{ $team->id }}
Type:
{{ $team->type }}
Name:
{{ $team->name }}
Display Order:
{{ $team->display_order }}

Additional Details

Status:
@if ($team->is_published) Published @else Draft @endif
Created At:
{{ $team->created_at->format('M d, Y H:i') }}
Updated At:
{{ $team->updated_at->format('M d, Y H:i') }}
@if ($team->description)

Description

{{ $team->description }}
@endif @if ($team->image)

Team Member Image

{{ $team->name }}
@endif
@endsection