@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)
| Başlık |
Tarih |
@foreach($news as $n)
| {{ $n->title }} |
{{ $n->created_at }} |
@endforeach
{{ $news->links() }}
@else
@endif
@stop