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

@section('title', $title )

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