@extends('layouts.app') @section('title', 'Feed') @section('content') @include('partials.ticker', ['tickerItems' => $tickerItems ?? collect()]) {{-- Story Tray --}}
@auth
Your Story
add
Add
@endauth @foreach($storyUsers as $storyUser)
{{ $storyUser->username }}
{{ $storyUser->username }}
@endforeach
{{-- Feed --}}
@foreach($statuses as $status)
@if($status->is_boosted)
@endif
{{ $status->user->username }}

{{ $status->user->name }} @if($status->user->is_premium) workspace_premium @endif

@if($status->encryption_badge_enabled)
lock SHA-256
@endif {{ $status->created_at->diffForHumans() }}
@if($status->caption)

{{ $status->caption }}

@endif @if($status->type === 'image' && $status->media_path)
Status media
@endif
@if($status->cta_channel === 'whatsapp') @elseif($status->cta_channel === 'telegram') @endif
favorite {{ $status->reactions_count }} chat_bubble {{ $status->comments_count }}
@if($status->is_boosted) monetization_on Boosted @endif
@endforeach
{{ $statuses->links() }} @endsection