File tree 6 files changed +63
-0
lines changed
6 files changed +63
-0
lines changed Original file line number Diff line number Diff line change 30
30
31
31
'public_key ' => env ('PASSPORT_PUBLIC_KEY ' ),
32
32
33
+ /*
34
+ |--------------------------------------------------------------------------
35
+ | Passport Database Connection
36
+ |--------------------------------------------------------------------------
37
+ |
38
+ | By default, Passport's models will utilize your application's default
39
+ | database connection. If you wish to use a different connection you
40
+ | may specify the configured name of the database connection here.
41
+ |
42
+ */
43
+
44
+ 'connection ' => env ('PASSPORT_CONNECTION ' ),
45
+
33
46
/*
34
47
|--------------------------------------------------------------------------
35
48
| Client UUIDs
Original file line number Diff line number Diff line change @@ -60,4 +60,14 @@ public function client()
60
60
{
61
61
return $ this ->belongsTo (Passport::clientModel ());
62
62
}
63
+
64
+ /**
65
+ * Get the current connection name for the model.
66
+ *
67
+ * @return string|null
68
+ */
69
+ public function getConnectionName ()
70
+ {
71
+ return $ this ->connection ?? config ('passport.connection ' );
72
+ }
63
73
}
Original file line number Diff line number Diff line change @@ -228,6 +228,16 @@ public function getIncrementing()
228
228
return Passport::clientUuids () ? false : $ this ->incrementing ;
229
229
}
230
230
231
+ /**
232
+ * Get the current connection name for the model.
233
+ *
234
+ * @return string|null
235
+ */
236
+ public function getConnectionName ()
237
+ {
238
+ return $ this ->connection ?? config ('passport.connection ' );
239
+ }
240
+
231
241
/**
232
242
* Create a new factory instance for the model.
233
243
*
Original file line number Diff line number Diff line change @@ -29,4 +29,14 @@ public function client()
29
29
{
30
30
return $ this ->belongsTo (Passport::clientModel ());
31
31
}
32
+
33
+ /**
34
+ * Get the current connection name for the model.
35
+ *
36
+ * @return string|null
37
+ */
38
+ public function getConnectionName ()
39
+ {
40
+ return $ this ->connection ?? config ('passport.connection ' );
41
+ }
32
42
}
Original file line number Diff line number Diff line change @@ -80,4 +80,14 @@ public function transient()
80
80
{
81
81
return false ;
82
82
}
83
+
84
+ /**
85
+ * Get the current connection name for the model.
86
+ *
87
+ * @return string|null
88
+ */
89
+ public function getConnectionName ()
90
+ {
91
+ return $ this ->connection ?? config ('passport.connection ' );
92
+ }
83
93
}
Original file line number Diff line number Diff line change @@ -126,4 +126,14 @@ public function transient()
126
126
{
127
127
return false ;
128
128
}
129
+
130
+ /**
131
+ * Get the current connection name for the model.
132
+ *
133
+ * @return string|null
134
+ */
135
+ public function getConnectionName ()
136
+ {
137
+ return $ this ->connection ?? config ('passport.connection ' );
138
+ }
129
139
}
You can’t perform that action at this time.
0 commit comments