djvoyager's avatar
<?php

// Find the user in the database.
$user = \App\Models\User::with('city.country')
    ->firstWhere('username', '=', 'djvoyager');

// Display the user's city and country.
echo "<b>City:</b> {$user->city->name}.<br><br>";
echo "<b>Country:</b> {$user->city->country->name}.";

City: Rotterdam.

Country: The Netherlands.

2 likes
PreviousNext

Please or to participate in this conversation.