@extends('layout.with-main-and-sidebar') @section('breadcrumbs') @endsection @section('page', 'page__person--show') @section('main') @livewire('tmdb-person-credit', ['person' => $person]) @endsection @section('sidebar')

{{ $person->name }}

{{ __('mediahub.born') }}
{{ $person->birthday ?? __('common.unknown') }}
Place of Birth
{{ $person->place_of_birth ?? __('common.unknown') }}
{{ $person->biography ?? 'No biography' }}
@endsection