Configuration
Defaults
By default your Nebula configuration will look like this:
// config/nebula.php
return [
'name' => 'Nebula',
'prefix' => '/nebula',
'domain' => null,
'auth_strategy' => NebulaIPAuthStrategy::class,
'allowed_ips' => [
'127.0.0.1',
],
'allowed_emails' => [
// 'admin@example.com',
],
'resources' => [
// new UserResource,
],
'dashboards' => [
// new UserDashboard,
],
];
You can change the dashboard display name and dashboard URL by editing name
and prefix
to your desired one.