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

@section('title', $title )

@section('navbarFocus.tips', 'class="active"')

@section('content')
	<h1 class="page-title">{!! trans('tips.title') !!}</h1>
	<div class="card-heavy">
		<ol>
			@foreach( $tips as $tip )
				<li>{!! $tip !!}</li>
			@endforeach
		</ol>
	</div>
@endsection