# Configuration

Once you have publish laravel-helium files, you should have a new config file config/helium.php

Preview

  1. Browser tab title
  2. Top left title
  3. Single Menu
  4. Dropdown Menu
  5. Coming soon
  6. Shortcuts

# Browser tab title

"title" => "Administration",

# Top left title

"main_title" => "Administration",

For both of single & dropdown menu :

  • current_route (optionnal) based on laravel route name
  • icon (required) must be a feather icon (opens new window)
  • url& links can be either a laravel route name or a full url

# Single

"Menu Label" => [
    "current_route" => "admin.home",
    "icon" => "home",
    "url" => 'admin.home',
],
"Repos" => [
    "current_route" => "admin.repos",
    "icon" => "github",
    "links" => [
        "Agence Webup" => "https://github.com/agence-webup",
        "Laravel-helium" => "admin.home"
    ],
],

# Shortcuts

Shortcuts allow users to quickly access frequently used pages

Nested arrays can be used for spliting differents

Links can be either a laravel route name or a full url

"shortcuts" => [
    [
        "Home" => "admin.home",
        "Helium" => "https://github.com/agence-webup/helium"
    ],
    [
        "Laravel Helium" => "https://github.com/agence-webup/laravel-helium",
        "Agence Webup" => "https://github.com/agence-webup"
    ]
],