Skip to content

Commit d7194f7

Browse files
committed
Add more page titles
1 parent 24aff48 commit d7194f7

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

resources/views/livewire/create-scorecard.blade.php

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
<x-slot:title>Create a scorecard</x-slot>
2+
<x-slot:description>Track scores for a game</x-slot>
3+
14
<div class="mt-8 md:w-2/3 xl:w-1/2">
25
<form class="w-full space-y-8" wire:submit="create">
36
<x-form.input

resources/views/livewire/media/media-page.blade.php

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
<x-slot:title>David's Media Log</x-slot>
2+
3+
<x-slot:description>
4+
I track what I read, watch, and play here!
5+
</x-slot>
6+
17
<div>
28
<x-type.page-title>Media Log</x-type.page-title>
39

resources/views/livewire/notes/notes-index-page.blade.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
<x-slot:title>David's Notes</x-slot>
2-
32
<x-slot:description>Notes from David</x-slot>
43

54
<div>

resources/views/scorecards/show.blade.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
1-
<x-layout.app>
1+
<x-layout.app
2+
title="Scorecard for {{ $scorecard->title }}"
3+
description="Track scores for {{ $scorecard->title }}"
4+
>
25
<x-type.page-title>{{ $scorecard->title }}</x-type.page-title>
36
<p>Started on {{ $scorecard->created_at->format("Y F j") }}</p>
47

0 commit comments

Comments
 (0)