Skip to content

Commit 09bb15d

Browse files
committed
Fix missing close blanklet in last commit.
1 parent 612b864 commit 09bb15d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

routes/api.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@
33
use Illuminate\Support\Facades\Route;
44
use Furic\HouseAds\Http\Controllers\HouseAdController;
55

6-
Route::prefix('api')->group(function () {
6+
Route::prefix('api')->group(function() {
77

88
Route::resource('house-ads', HouseAdController::class)->only([
99
'index', 'show', 'update'
1010
]);
1111

12-
}
12+
});

0 commit comments

Comments
 (0)