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