@extends('layouts.master') @section('contain') {{-- --}}
S.No | Name | Media | Thumbnail | Date | Views | {{--Action | --}}{{ $num++ }} | {{ $story->user->full_name }} | {{----}} {{-- --}} {{-- --}} {{-- --}} {{-- | --}}
@if ($story->image != null)
@php
$extension = pathinfo($story->image, PATHINFO_EXTENSION);
$mediaUrl = env('MEDIA_URL') . $story->image;
@endphp
@if (in_array($extension, ['jpg', 'jpeg', 'png', 'gif','jfif','GPEG']))
@elseif (in_array($extension, ['mp4', 'webm', 'ogg']))
@else
Unsupported media type: {{ $extension }} @endif @else @endif |
@if ($story->thumbnail != null) @else {{"-"}} @endif | {{ $story->created_at->format('Y-m-d') }} | {{$story->story_views_count}} | @endforeach
---|