@extends('site.layouts.main') @section('meta_title'){{ trans('messages.Adnan Eltaher') . ' | ' . trans('messages.Videos') }}@stop @section('content')

{{ trans('messages.Videos') }}

@foreach ($videos as $video)
{{-- --}}

{{ $video->{'title_' . App::getLocale()} }}

@php $descLen = strlen($video->{'description_' . App::getLocale()}); @endphp {{--

{{ $descLen }}

--}} @if ($descLen > 160)

{{ substr($video->{'description_' . App::getLocale()}, 0, 160) }}...

@else

{{ $video->{'description_' . App::getLocale()} }}

@endif
@endforeach
@endsection @section('script') @endsection