@extends('layouts.app') @section('content')

{{__('Overview')}}

{{__('Know for')}}
{{__('Acting')}}
{{__('Gender')}}
{{$listing->gender == '2' ? __('Male') : __('Female')}}
@if(!empty($listing->arguments->birth_place))
{{__('Birth Place')}}
{{$listing->arguments->birth_place}}
@endif @if(!empty($listing->birthday))
{{__('Birthday')}}
{{$listing->birthday->translatedFormat('d M, Y').' ('.__(':age years old',['age' => $listing->birthday->diffInYears()]).')'}}
@endif @if(!empty($listing->death_date))
{{__('Death date')}}
{{$listing->death_date->translatedFormat('d M, Y')}}
@endif

{{$listing->name}}

@if(!empty($listing->bio))

{{__('Biography')}}

{{$listing->bio}}

@endif

{{__('Known For')}}

@foreach($listing->posts->slice(0, 6) as $people) @endforeach

{{__('Acting')}}

@foreach($listing->posts as $post)
{{$post->release_date->translatedFormat('Y')}}
{{$post->title}}
@endforeach
@endsection