@extends('layout.page-app') @section('page_title', __('label.video_details')) @section('content') @include('layout.sidebar')
@include('layout.header')

@yield('title')

@if($detail !==null) @else - @endif @if($artist !==null) @else - @endif @if($user !==null) @else - @endif @if($category !==null) @else - @endif
{{__('label.details')}}
Name{{$detail->name}}
{{__('label.artist')}}{{ $artist->name}}
{{__('label.user')}}{{ $user->full_name}}
{{__('label.category')}}{{ $category->name}}
{{__('label.image')}}
{{__('label.IS Paid')}} @if($detail->is_paid == 0) {{__('label.free')}} @else {{__('label.paid')}} @endif
{{__('label.description')}} @if($detail->description) {{$detail->description}} @else - @endif
{{__('label.Feature')}} @if($detail->is_feature == 0) No @else Yes @endif
{{__('label.video_upload_type')}} @if($detail->video_type) {{$detail->video_type}} @else - @endif
{{__('label.video_url')}} @if($detail->video_type == "server_video") {{ $detail->url}} @else ($detail->video_type == "url" || $detail->video_type == "youtube" || $detail->video_type == "vimeo") {{$detail->url}} @endif
{{__('label.view')}} {{ $detail->view}}
@endsection @section('pagescript') @endsection