Skip to content

Commit 0d236d3

Browse files
authored
fix: correct way to display chirps via artisan tinker (#53)
1 parent 1f5c867 commit 0d236d3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

resources/docs/blade/creating-chirps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -543,7 +543,7 @@ php artisan tinker
543543
Next, execute the following code to display the Chirps in your database:
544544

545545
```shell
546-
Chirp::all();
546+
App\Models\Chirp::all();
547547
```
548548

549549
```

resources/docs/livewire/creating-chirps.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -474,7 +474,7 @@ php artisan tinker
474474
Next, execute the following code to display the Chirps in your database:
475475

476476
```shell
477-
Chirp::all();
477+
App\Models\Chirp::all();
478478
```
479479

480480
```

0 commit comments

Comments
 (0)