@extends('layouts.public') @section('title', $video->title) @section('meta_description', \Illuminate\Support\Str::limit(strip_tags($video->description ?? ''), 155)) @section('og_type', 'video.other') @if ($video->thumbnail) @section('og_image', Storage::url($video->thumbnail)) @endif @section('content') @include('public._breadcrumb', ['items' => [['label' => 'الفيديوهات', 'url' => '/videos'], ['label' => $video->title]]])

{{ $video->title }}

@include('public._share-buttons', ['shareTitle' => $video->title])
@if ($video->description)
{{ $video->description }}
@endif @endsection