@extends('template')
@section('title', 'Noticia')
@section('breadcrumb')
Inicio
Noticias
{{$noticias[0]->title}}
@endsection
@section('content')
@foreach ($noticias as $noticia)
{{ $noticia->title }}
{!! str_replace('src="/', 'src="https://pitscolombia.com.co/',$noticia->body) !!}
@endforeach
@endsection