@extends('frontend.layouts.app') @section('page-title', $page->title) @section('keywords', $page->keywords) @section('description', $page->description) @section('content') @include('frontend.partials.messages')

{{ $page->title }}

{!! $page->body !!}
@foreach( \VanguardDK\Point::orderBy('rating', 'ASC')->get() AS $k=>$cours )
{{ $k+1 }}
{{ $cours->name }}

{{ $cours->title }} {{ $cours->name }}

{!! $cours->description !!}
@if ($k%3==2)
@endif @endforeach
@stop @section('scripts') @stop