@extends('admin.layouts.master') @section('title', $title) @section('content')
@include('admin.inc.breadcrumb')

{{ __('dashboard.view') }} {{ $title }}

{{ __('dashboard.title') }}: {{ $row->title }}

{{ __('dashboard.category') }}: @foreach($row->categories as $category) {{ $category->title }} @endforeach


@if(!empty($row->video_id))

{{ __('dashboard.youtube_video') }}:


@endif @if(is_file('uploads/'.$path.'/'.$row->image_path))

{{ __('dashboard.thumbnail') }}:

Portfolio @endif

{{ __('dashboard.description') }}: {!! $row->description !!}

@if(!empty($row->link))

{{ __('dashboard.web_link') }}: {{ $row->link }}

@endif

{{ __('dashboard.status') }}: @if( $row->status == 1 ) {{ __('dashboard.active') }} @else {{ __('dashboard.inactive') }} @endif

@endsection