You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**Step 3.** Create a new controller file called `BookController` inside the *app/Http/Controllers* directory. You can simply run `php artisan make:controller BookController`
498
499
499
500
```php
500
-
501
501
namespace App\Http\Controllers;
502
502
503
503
use Illuminate\Http\Request;
@@ -522,7 +522,7 @@ class BookController extends Controller
522
522
```
523
523
524
524
**Step 4.** Create `books.blade.php` template.
525
-
```blade
525
+
```php
526
526
@extends('layouts.master')
527
527
528
528
@section('content')
@@ -543,8 +543,6 @@ class BookController extends Controller
0 commit comments