Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion config/auth.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@
| as required, but they're a perfect start for most applications.
|
*/

'defaults' => [
'guard' => 'web',
'passwords' => 'users',
Expand Down Expand Up @@ -69,6 +68,7 @@
'driver' => 'eloquent',
'model' => App\User::class,
],


// 'users' => [
// 'driver' => 'database',
Expand Down
1 change: 1 addition & 0 deletions config/broadcasting.php
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@

'null' => [
'driver' => 'null',

],

],
Expand Down
4 changes: 2 additions & 2 deletions config/database.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

///this is the code for config/database.php
return [

/*
Expand All @@ -12,7 +12,7 @@
| you may use many connections at once using the Database library.
|
*/

//hello
'default' => env('DB_CONNECTION', 'mysql'),

/*
Expand Down
2 changes: 1 addition & 1 deletion routes/api.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<?php

//api is usefull
use Illuminate\Http\Request;

/*
Expand Down