diff --git a/resources/views/auth/login.blade.php b/resources/views/auth/login.blade.php index d267c21..479c2bf 100644 --- a/resources/views/auth/login.blade.php +++ b/resources/views/auth/login.blade.php @@ -1,4 +1,5 @@ @extends('layouts.app') +@section('title', "Login") @section('content')
diff --git a/resources/views/auth/passwords/email.blade.php b/resources/views/auth/passwords/email.blade.php index 12e8083..5307325 100644 --- a/resources/views/auth/passwords/email.blade.php +++ b/resources/views/auth/passwords/email.blade.php @@ -1,4 +1,5 @@ @extends('layouts.app') +@section('title', "Forgotten Password") @section('content')
diff --git a/resources/views/auth/passwords/reset.blade.php b/resources/views/auth/passwords/reset.blade.php index 3557662..0f3a456 100644 --- a/resources/views/auth/passwords/reset.blade.php +++ b/resources/views/auth/passwords/reset.blade.php @@ -1,4 +1,5 @@ @extends('layouts.app') +@section('title', "Reset Password") @section('content')
diff --git a/resources/views/auth/register.blade.php b/resources/views/auth/register.blade.php index a0d686e..fae2ad2 100644 --- a/resources/views/auth/register.blade.php +++ b/resources/views/auth/register.blade.php @@ -1,4 +1,5 @@ @extends('layouts.app') +@section('title', "Register") @section('content')
diff --git a/resources/views/layouts/app.blade.php b/resources/views/layouts/app.blade.php index 058e577..f395c6d 100644 --- a/resources/views/layouts/app.blade.php +++ b/resources/views/layouts/app.blade.php @@ -8,7 +8,7 @@ - {{ config('app.name', 'Laravel') }} + @yield('title', 'MISSING TITLE') - datatable.directory diff --git a/resources/views/profile/edit-account.blade.php b/resources/views/profile/edit-account.blade.php index 4a10a76..9936b0b 100644 --- a/resources/views/profile/edit-account.blade.php +++ b/resources/views/profile/edit-account.blade.php @@ -1,6 +1,7 @@ {{-- Profile edit form --}} @extends('layouts.app') +@section('title', "Account Settings") @section('content') @php(Widget::setLayout(3, 7)) diff --git a/resources/views/profile/edit-profile.blade.php b/resources/views/profile/edit-profile.blade.php index b224c0d..b59a72f 100644 --- a/resources/views/profile/edit-profile.blade.php +++ b/resources/views/profile/edit-profile.blade.php @@ -1,6 +1,7 @@ {{-- Profile edit form --}} @extends('layouts.app') +@section('title', "Edit Profile") @section('content')
@php(Widget::setLayout(3, 7)) - {!! Widget::header(1, 'Profile Settings') !!} + {!! Widget::header(1, 'Edit Profile') !!} {!! Widget::par(' Username can be changed on the account settings page. diff --git a/resources/views/profile/view.blade.php b/resources/views/profile/view.blade.php index 22fafab..6e930e3 100644 --- a/resources/views/profile/view.blade.php +++ b/resources/views/profile/view.blade.php @@ -1,5 +1,6 @@ {{-- User's dashboard / profile page --}} @extends('layouts.app') +@section('title', "$user->title's Tables") @php /** @var \App\Models\Table[] $tables */ diff --git a/resources/views/table/conf.blade.php b/resources/views/table/conf.blade.php index 91447a1..e21c482 100644 --- a/resources/views/table/conf.blade.php +++ b/resources/views/table/conf.blade.php @@ -1,6 +1,7 @@ {{-- Basic table view --}} @extends('layouts.app') +@section('title', "Table Settings - \"$table->title\"") @php /** @var \App\Models\Table $table */ diff --git a/resources/views/table/create.blade.php b/resources/views/table/create.blade.php index 0ed033c..38f1abf 100644 --- a/resources/views/table/create.blade.php +++ b/resources/views/table/create.blade.php @@ -1,6 +1,7 @@ {{-- New table form --}} @extends('layouts.app') +@section('title', "New Table") @section('content') title\"") @php /** @var \App\Models\Table $table */ diff --git a/resources/views/table/revisions.blade.php b/resources/views/table/revisions.blade.php index 6e28760..3ce1337 100644 --- a/resources/views/table/revisions.blade.php +++ b/resources/views/table/revisions.blade.php @@ -1,6 +1,7 @@ {{-- List of table revisions --}} @extends('layouts.app') +@section('title', "Revisions - $table->title") @php /** @var \App\Models\Table $table */ diff --git a/resources/views/table/view.blade.php b/resources/views/table/view.blade.php index 62a205f..79e334c 100644 --- a/resources/views/table/view.blade.php +++ b/resources/views/table/view.blade.php @@ -1,6 +1,7 @@ {{-- Basic table view --}} @extends('layouts.app') +@section('title', "Table \"$table->title\"") @php /** @var \App\Models\Table $table */ diff --git a/resources/views/welcome.blade.php b/resources/views/welcome.blade.php index 7098bf7..53f91ad 100644 --- a/resources/views/welcome.blade.php +++ b/resources/views/welcome.blade.php @@ -6,6 +6,7 @@ @endphp @extends('layouts.app') +@section('title', "All Tables") @section('content') @if($showGreeter)