@extends('layouts.wrap') @section('title', 'Haberler') @include('news::sidebar') @section('_content')

Haberler Komponenti

@if(Session::has('message'))
{{ Session::get('message') }}
@endif @if($news->count() > 0) @foreach($news as $n) @endforeach
Başlık Tarih
{{ $n->title }} {{ $n->created_at }}
{{ $news->links() }} @else

Hiç Haberiniz yok.

Buradan ekleyin
@endif
@stop