@extends('layout.page-app') @section('page_title', __('label.video_details')) @section('content') @include('layout.sidebar')
{{__('label.details')}} | |
---|---|
Name | @if($detail !==null){{$detail->name}} | @else - @endif
{{__('label.artist')}} | @if($artist !==null){{ $artist->name}} | @else - @endif
{{__('label.user')}} | @if($user !==null){{ $user->full_name}} | @else - @endif
{{__('label.category')}} | @if($category !==null){{ $category->name}} | @else - @endif
{{__('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}} |