@extends('template')
@section('title', 'Video')
@section('breadcrumb')
Inicio
Videos
{{$videos[0]->title}}
@endsection
@section('content')
@foreach ($videos as $video)
{{ $video->title }}
{!! str_replace('src="/', 'src="http://fontur.net/',$video->body) !!}
{{-- --}}
@endforeach
@endsection