@extends('layouts.app') @section('content')
Broadcaster ticker: boosted statuses receive priority placement for 24 hours.
@foreach($statuses->take(8) as $story)
{{ \Illuminate\Support\Str::limit($story->user->name, 9) }}
@endforeach
@forelse($statuses as $status)
{{ $status->user->name }}

{{ $status->created_at->diffForHumans() }}

enhanced_encryption{{ substr($status->sha256_signature, 0, 10) }}
@if($status->type === 'text')
{{ $status->body }}
@elseif($status->type === 'image') @elseif($status->type === 'voice')
@elseif($status->type === 'video') @endif

{{ $status->caption }}

@if($status->whatsapp_number)WhatsApp@endif @if($status->telegram_username)Telegram@endif
@empty
No statuses yet.
@endforelse {{ $statuses->links() }} @endsection