@extends('front.'.config('app.template', 'tendra').'.master') @section('body') {{-- HERO SECTION --}}
{{ __('Audio Stories') }}
{{-- FILTERS --}}
{{-- Categories --}}
@foreach($categories as $category) {{ $category->name }} @endforeach
{{-- STORIES GRID --}}
@if($stories->count() > 0)
@foreach($stories as $story)
@if($story->cover_image) {{ $story->title }} @else
🎧
@endif @if($story->is_free) {{ __('Free') }} @else {{ config('payments.currency_symbol') }}{{ $story->price }} @endif @if($story->duration) {{ $story->duration }} @endif

{{ $story->title }}

{{ Str::limit($story->description, 120) }}

{{ $story->category->name ?? __('Uncategorized') }} {{ __('Listen') }}
@endforeach
{{-- Pagination --}} @if($stories->hasPages())
{{ $stories->appends(request()->input())->links() }}
@endif @else
🎧

{{ __('No stories found') }}

{{ __('Try adjusting your search or browse all stories') }}

{{ __('Browse All Stories') }}
@endif
@endsection