@extends('base') @section('page-content')

{{ $character->first_name }} {{ $character->last_name }}

Biographie

{{ $character->biography }}

Catelyn

Maisons

    @foreach( $character->houses as $house ) @endforeach
  • Rang : {{ $character->title->name }}
  • Mère : @if( $character->mother !== null) {{ $character->mother->first_name }} {{ $character->mother->last_name }} @endif
  • Père : @if( $character->father !== null) {{ $character->father->first_name }} {{ $character->father->last_name }} @endif
@endsection