@extends('web.layouts.app', ['title' => 'Stories / Rankings / Notifications']) @section('content')

Stories

@foreach($stories as $story)

{{ $story->user?->username ?? 'user' }}
{{ $story->caption }} {{ $story->privacy }}

@endforeach

Rankings

@foreach($rankings as $rank) @endforeach
ScopeUserScore
{{ $rank->scope }}#{{ $rank->user_id }}{{ number_format($rank->score) }}

Notifications

@foreach($notifications as $notification)

{{ $notification->title }}
{{ $notification->body }}

@endforeach
@endsection