@extends('layouts.site') @section('meta_tags') {{ config('app.name', 'New Life') }} | {{ trans('home.blog') }} @endsection @section('content')

@lang('home.last videos')

@foreach(\App\Videos::where('active',1)->orderBy('sort','ASC')->pluck('iframe')->toArray() as $videoIframe)
{!! preg_replace('/width="(.*?)"/i', 'width="100%"',preg_replace('/height="(.*?)"/i', 'height="100%"',$videoIframe)) !!}
@endforeach
@endsection @section('scriptSection') @endsection