@extends('layouts.master')
@section('content')
News {{HTML::link('news/create', 'Neuer Eintrag', array('class'=>'button tiny right')) }}
Titel |
Veröffentlicht |
@foreach($news as $n)
{{$n->headline}} |
@if($n->published)
Ja
@else
Nein
@endif
|
@endforeach
@stop
@section('pagejs')
@stop