@extends('admin.master') @section('title', __('Stories')) @section('content')
|
{{ __('Title') }} | {{ __('Cover') }} | {{ __('Category') }} | {{ __('Price') }} | {{ __('Duration') }} | {{ __('Active') }} | {{ __('Created at') }} | {{ __('Actions') }} |
---|---|---|---|---|---|---|---|---|
id }})">
|
{{ isset($story->title) ? Str::limit($story->title, 50) : __('Untitled Story') }} |
@if(isset($story->cover_image) && $story->cover_image)
|
{{ $story->category_name ?? __('Uncategorized') }} | @if(isset($story->is_free) && $story->is_free) {{ __('Free') }} @else {{ config('payments.currency_symbol', '$') }}{{ $story->price ?? '0.00' }} @endif | {{ $story->duration ?? __('N/A') }} |
active) && $story->active) checked @endif @change="updateActiveStatus('{{ $story->id }}')">
|
{{ isset($story->created_at) ? $story->created_at->format('Y-m-d H:i') : __('N/A') }} |
|
{{ __('No stories found') }}
|
{{ $story->duration ?? '-' }} |
active) checked @endif @change="updateActiveStatus('{{ $story->id }}')">
|
{{ $story->created_at->format('Y-m-d H:i') }} |
|
@endforeach