@extends('site.layouts.app') @section('title', $mediaDetails->title) {{-- SEO Start --}} @section('meta_description', 'This is the description for SEO') @section('meta_keywords', 'SEO, Keywords, Web Development') {{-- SEO End --}} @section('content')
{{-- --}}
{!! $mediaDetails->title !!}
@if ($mediaDetails->type == 'link') Article link : Click Here @endif
{{-- If its youtube video start --}} @if ($mediaDetails->type == 'youtube') @endif {{-- If its youtube video end --}} {{-- if its link start --}} @if ($mediaDetails->type == 'link')

{!! $mediaDetails->description !!}

{{-- if its link end --}} @endif {{-- if its video start --}} @if ($mediaDetails->type == 'file') {{-- if its video end --}} @endif

{{-- Status: --}} {{ $mediaDetails->status == 1 ? 'Premium' : 'Free' }}
@endsection