@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 ($data['posts'] as $post)
Profile Image
{{ $post->user->name }}

"{{ $post->status }}"

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

@endforeach @if ($data['posts']->isEmpty())

Your feed is empty.

@endif
{{ $data['posts']->links() }}

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

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


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

You don't have any friends yet!

@endif

Recently Played


You haven't played any games yet!



@endsection