File Manager Lite
Dir:
/home/u540325668/domains/sostabazar.in/public_html/schooldemo/config
Upload
[..]
app.php (7.57 KB)
Edit
Rename
Del
auth.php (3.92 KB)
Edit
Rename
Del
broadcasting.php (1.82 KB)
Edit
Rename
Del
cors.php (846 B)
Edit
Rename
Del
dompdf.php (11.21 KB)
Edit
Rename
Del
excel.php (12.09 KB)
Edit
Rename
Del
filesystems.php (2.23 KB)
Edit
Rename
Del
global.php (639 B)
Edit
Rename
Del
hashing.php (1.54 KB)
Edit
Rename
Del
ide-helper.php (11.1 KB)
Edit
Rename
Del
image.php (508 B)
Edit
Rename
Del
installer.php (2.63 KB)
Edit
Rename
Del
logging.php (3.61 KB)
Edit
Rename
Del
mail.php (3.53 KB)
Edit
Rename
Del
permission.php (5.59 KB)
Edit
Rename
Del
sanctum.php (2.24 KB)
Edit
Rename
Del
services.php (1.05 KB)
Edit
Rename
Del
session.php (6.86 KB)
Edit
Rename
Del
update-generator.php (5.2 KB)
Edit
Rename
Del
view.php (1.05 KB)
Edit
Rename
Del
Edit: broadcasting.php
<?php return [ /* |-------------------------------------------------------------------------- | Default Broadcaster |-------------------------------------------------------------------------- | | This option controls the default broadcaster that will be used by the | framework when an event needs to be broadcast. You may set this to | any of the connections defined in the "connections" array below. | | Supported: "pusher", "ably", "redis", "log", "null" | */ 'default' => env('BROADCAST_DRIVER', 'null'), /* |-------------------------------------------------------------------------- | Broadcast Connections |-------------------------------------------------------------------------- | | Here you may define all of the broadcast connections that will be used | to broadcast events to other systems or over websockets. Samples of | each available type of connection are provided inside this array. | */ 'connections' => [ 'pusher' => [ 'driver' => 'pusher', 'key' => env('PUSHER_APP_KEY'), 'secret' => env('PUSHER_APP_SECRET'), 'app_id' => env('PUSHER_APP_ID'), 'options' => [ 'cluster' => env('PUSHER_APP_CLUSTER'), 'useTLS' => true, ], 'client_options' => [ // Guzzle client options: https://docs.guzzlephp.org/en/stable/request-options.html ], ], 'ably' => [ 'driver' => 'ably', 'key' => env('ABLY_KEY'), ], 'redis' => [ 'driver' => 'redis', 'connection' => 'default', ], 'log' => [ 'driver' => 'log', ], 'null' => [ 'driver' => 'null', ], ], ];
Simpan