Skip to content

Instantly share code, notes, and snippets.

@Oleksandr-Moik
Last active May 24, 2023 14:12
Show Gist options
  • Save Oleksandr-Moik/34c1443e7bfa2f7ad069520212f9baad to your computer and use it in GitHub Desktop.
Save Oleksandr-Moik/34c1443e7bfa2f7ad069520212f9baad to your computer and use it in GitHub Desktop.

PhpStorm, Laravel IDEA plugin, ide.json (v1) configuration file for package jeroennoten/laravel-adminlte. Place in the root of your project. Hints for components and types from a package.

ide.json

{
  "$schema": "http://laravel-ide.com/schema/laravel-ide-v1.json",
  "completion": {
  },
  "view": {
    "paths": [
      {
        "path": "vendor/jeroennoten/laravel-adminlte/resources/views",
        "namespace": "adminlte"
      }
    ]
  },
  "blade": {
    "components": {
      "viewPaths": [
        {
          "path": "vendor/jeroennoten/laravel-adminlte/resources/views/components/widget",
          "namespace": "",
          "prefix": "adminlte-",
          "viewNamespace": "adminlte"
        },
        {
          "path": "vendor/jeroennoten/laravel-adminlte/resources/views/components/tool",
          "namespace": "",
          "prefix": "adminlte-",
          "viewNamespace": "adminlte"
        },
        {
          "path": "vendor/jeroennoten/laravel-adminlte/resources/views/components/form",
          "namespace": "",
          "prefix": "adminlte-",
          "viewNamespace": "adminlte"
        },
        {
          "path": "vendor/jeroennoten/laravel-adminlte/resources/views/components/layout",
          "namespace": "",
          "prefix": "adminlte-navbar-",
          "viewNamespace": "adminlte"
        }
      ]
    }
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment