Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | public function __invoke(Request $request) |
||
15 | { |
||
16 | return Inertia::render('Admin/App/Email', [ |
||
17 | 'settings' => [ |
||
18 | 'host' => config('mail.mailers.smtp.host'), |
||
19 | 'port' => config('mail.mailers.smtp.port'), |
||
20 | 'encryption' => config('mail.mailers.smtp.encryption'), |
||
21 | 'username' => config('mail.mailers.smtp.username'), |
||
22 | 'from_address' => config('mail.from.address'), |
||
23 | ], |
||
27 |