Skip to content
Snippets Groups Projects
tips.blade.php 211 B
Newer Older
@extends('layouts.staticPages')

@section('title', $title )

@section('content')
	<h1>{!! trans('tips.title') !!}</h1>
	<ol>
		@foreach( $tips as $tip )
			<li>{!! $tip !!}</li>
		@endforeach
	</ol>