summaryrefslogtreecommitdiff
path: root/source/index.blade.php
blob: d474972ecd2cacad44c8632f13a2bb8aa8c216fb (plain)
1
2
3
4
5
6
7
8
9
@extends('_layouts.master')

@section('article')
    <ol>
    @foreach ($posts as $post)
        <li><a href="{{ $post->getUrl() }}">{{$post->title }}</a></li> 
    @endforeach
    </ol>
@endsection