@extends('layouts.app') @section('title') Home - {{ env('APP_NAME') }} @endsection @section('titlediscord') @endsection @section('descdiscord') @endsection @section('content')

Hello, {{ Auth::user()->name }}!


My Feed


@csrf

@if ($errors->any()) {{ $errors->first() }} @endif @if (session()->has('success')) {{ session()->get('success') }} @endif

@foreach ($posts as $post)
A image of {{ $post->user->name }}
{{ $post->user->name }}

"{{ $post->status }}"

@if (!Auth::user()->settings->time_preference_24hr)

{{ $post->created_at->format('F d, Y h:i A') }}

@else

{{ $post->created_at->format('F d, Y H:i') }}

@endif
@endforeach @if ($posts->isEmpty())

No news about your friends... want to know what your friends are up to?

make some friends now. @endif
{{ $posts->links() }}

Friends ({{ Auth::user()->getFriendsCount() }})

@if (Auth::user()->getFriendsCount() > 0) @endif


@if (Auth::user()->getFriendsCount() > 0)
@foreach ($friends as $friend) @endforeach
@else

You don't have any friends yet!

@endif

Recently Played Games


You haven't played any games recently.

Play Now


@endsection