@extends('admin.layouts.app') @section('content')
{{translate('Story Details')}}
{{ $happy_story->title }}
{{ translate('Posted By:').' '.$happy_story->user->first_name.' '.$happy_story->user->last_name }}
{{ translate('Post Time:').' '.$happy_story->created_at }}
@php echo $happy_story->details; @endphp
@if ($happy_story->video_provider == 'youtube' && isset(explode('=', $happy_story->video_link)[1])) @elseif ($happy_story->video_provider == 'dailymotion' && isset(explode('video/', $happy_story->video_link)[1])) @elseif ($happy_story->video_provider == 'vimeo' && isset(explode('vimeo.com/', $happy_story->video_link)[1])) @endif
@endsection