@extends('layout.default')
@section('breadcrumbs')
{{ __('mediahub.title') }}
{{ __('mediahub.persons') }}
{{ $person->name }}
@endsection
@section('main')
@livewire('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