@extends('user::layouts.backend-master') @section('breadcrumb_title', 'Team Details') @section('content')

Team Details

Edit Back to Teams
@if ($team->getFirstMediaUrl('featured')) {{ $team->title }} @else

No featured image

@endif

{{ $team->title }}

{{ $team->getMeta('occupation') }}

{{ ucfirst($team->status) }} @if ($team->getMeta('is_featured') == 1) Featured @endif

URL Slug: {{ $team->slug }}
Created: {{ customDateTimeFormate($team->created_at) }}
Language: {{ $team->language->name }}
@if ($team->published_at)
Published: {{ customDateTimeFormate($team->published_at) }}
@endif

Short Description

{!! html_entity_decode($team->excerpt) ?: '

No short description provided.

' !!}

Full Description

{!! $team->content ?: '

No description provided.

' !!}
Contact Information
Email:

{{ $team->getMeta('email') ?: $team->email ?: 'Not Provided' }}

Phone:

{{ $team->getMeta('phone') ?: $team->phone ?: 'Not Provided' }}

Address:

{{ $team->getMeta('address') ?: $team->address ?: 'Not Provided' }}

Google Map Link:

{{ $team->getMeta('google_map_link') ?: $team->google_map_link ?: 'Not Provided' }}

SEO Information
Meta Title:

{{ $team->getSeoMeta('title') ?: $team->title }}

Meta Description:

{{ $team->getSeoMeta('description') ?: 'No meta description provided.' }}

Meta Keywords:

{{ $team->getSeoMeta('keywords') ?: 'No keywords provided.' }}

@endsection