@extends('admin.layout') @section('title', 'Stories') @section('content')
Toutes Actives Expirées Photos profil
@forelse($stories as $story) @php $isText = ($story->type ?? '') === 'text' || empty($story->path); $bgStyle = $isText ? 'background-color:' . ($story->background_color ?? '#DC143C') : 'background-image:url(' . (str_starts_with($story->path ?? '', 'http') ? $story->path : asset('storage/' . $story->path)) . ')'; @endphp
@if($isText) {{ Str::limit($story->text_content ?? $story->caption, 60) }} @endif
{{ $story->user?->name ?? 'Anonyme' }}
{{ $story->expires_at?->isPast() ? 'Expirée' : 'Active' }} · {{ $story->created_at->diffForHumans() }}
@csrf @method('DELETE')
@empty
Aucune story.
@endforelse
{{ $stories->withQueryString()->links('pagination.admin') }} @endsection