Good job, one thing I would fix is the page title(s).. You can use Blade to give each page its own title..
Just simply do this in your master template file..
<html>
<head>
<title>@yield('title') Utah Gold Guru</title>
</head>
<body>
@yield('content')
</body>
</html>
And something like this in your sub template files..
@extends('layouts.app')
@section('title')
{{ $course->name }} -
@endsection
@section('content')
<div class="container"></div>
@endsection