{"id":23690001,"url":"https://github.com/murdercode/laravel-admin-bar","last_synced_at":"2025-07-24T08:40:10.975Z","repository":{"id":64377707,"uuid":"574867981","full_name":"murdercode/laravel-admin-bar","owner":"murdercode","description":"A great admin bar for your Laravel application","archived":false,"fork":false,"pushed_at":"2025-06-04T10:14:26.000Z","size":78,"stargazers_count":0,"open_issues_count":3,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-15T08:09:34.802Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Blade","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/murdercode.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2022-12-06T08:50:10.000Z","updated_at":"2025-06-04T10:14:28.000Z","dependencies_parsed_at":"2024-03-18T15:21:09.445Z","dependency_job_id":null,"html_url":"https://github.com/murdercode/laravel-admin-bar","commit_stats":{"total_commits":16,"total_committers":4,"mean_commits":4.0,"dds":0.4375,"last_synced_commit":"3373e7fabbcba9c0b4f974ebde4cbc18e00154ac"},"previous_names":[],"tags_count":15,"template":false,"template_full_name":"spatie/package-skeleton-laravel","purl":"pkg:github/murdercode/laravel-admin-bar","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murdercode%2Flaravel-admin-bar","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murdercode%2Flaravel-admin-bar/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murdercode%2Flaravel-admin-bar/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murdercode%2Flaravel-admin-bar/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/murdercode","download_url":"https://codeload.github.com/murdercode/laravel-admin-bar/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/murdercode%2Flaravel-admin-bar/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":266815313,"owners_count":23988572,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","status":"online","status_checked_at":"2025-07-24T02:00:09.469Z","response_time":99,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-30T01:58:15.669Z","updated_at":"2025-07-24T08:40:10.946Z","avatar_url":"https://github.com/murdercode.png","language":"Blade","readme":"# Laravel Admin Bar\n\n[![Latest Version on Packagist](https://img.shields.io/packagist/v/murdercode/laravel-admin-bar.svg?style=flat-square)](https://packagist.org/packages/murdercode/laravel-admin-bar)\n[![run-tests](https://github.com/murdercode/laravel-admin-bar/actions/workflows/run-tests.yml/badge.svg)](https://github.com/murdercode/laravel-admin-bar/actions/workflows/run-tests.yml)\n[![Fix PHP code style issues](https://github.com/murdercode/laravel-admin-bar/actions/workflows/fix-php-code-style-issues.yml/badge.svg)](https://github.com/murdercode/laravel-admin-bar/actions/workflows/fix-php-code-style-issues.yml)\n[![Total Downloads](https://img.shields.io/packagist/dt/murdercode/laravel-admin-bar.svg?style=flat-square)](https://packagist.org/packages/murdercode/laravel-admin-bar)\n\nA simple, but powerful, package for include an Admin bar (like Wordpress) in your next fantastic Laravel project.\n\n## Requirements\n\n| Package Version     | Requirement | Version      |\n|---------------------|-------------|--------------|\n| 1.x.x               | Laravel     | 10.x or 11.x |\n| 1.x.x               | Nova        | 4.x          |\n| dev-beta-laravel-12 | Laravel     | 12.x         |\n| dev-beta-laravel-12 | Nova        | 5.x          |\n\n## Installation\n\nYou can install the package via composer:\n\n```bash\ncomposer require murdercode/laravel-admin-bar\n```\n\nYou can publish the config file with:\n\n```bash\nphp artisan vendor:publish --tag=\"admin-bar-config\"\n```\n\nThis is the contents of the published config file:\n\n```php\n\u003c?php\n\n// config for Murdercode/LaravelAdminBar\nreturn [\n    'style' =\u003e [\n        'show3labsLogo' =\u003e true,\n        'theme' =\u003e 'dark', // 'light' or 'dark'\n        'max-width' =\u003e '1200px',\n        'position' =\u003e 'bottom', // 'top' or 'bottom'\n        'font-size' =\u003e '14px',\n    ],\n    'config' =\u003e [\n        'adminUrl' =\u003e '/cms',\n        'editPost' =\u003e [\n            'enabled' =\u003e true,\n            'uris' =\u003e ['articoli/{slug}', 'notizie/{slug}', 'recensioni/{slug}'], // detect the current route as defined in your routes/web.php\n            'wildcard' =\u003e 'slug', // the wildcard for the parameter (as over)\n            'parameterForSearch' =\u003e 'slug', // the parameter to be used for search the post\n            'model' =\u003e \\App\\Models\\Post::class, // the model to be used for search the post\n            'parameterToReturn' =\u003e 'id', // the value to be returned\n            'targetEndpointUrl' =\u003e '/cms/resources/posts/{parameter}',\n        ],\n        'emptyCachePost' =\u003e [\n            'enabled' =\u003e true,\n            'uris' =\u003e ['articoli/{slug}', 'notizie/{slug}', 'recensioni/{slug}'], // detect the current route as defined in your routes/web.php\n            'wildcard' =\u003e 'post', // the wildcard for the parameter (as over)\n            'parameterForSearch' =\u003e 'slug', // the parameter to be used for search the post\n            'model' =\u003e \\App\\Models\\Post::class, // the model to be used for search the post\n            'parameterToReturn' =\u003e 'id', // the value to be returned\n            'targetEndpointUrl' =\u003e '/posts/{parameter}?nocache',\n        ],\n    ],\n];\n```\n\nOptionally, you can publish the views using\n\n```bash\nphp artisan vendor:publish --tag=\"laravel-admin-bar-views\"\n```\n\n## Usage\n\nIn any part of your layout you can include the admin bar using the following code:\n\n```php\n{{LaravelAdminBar::render()}}\n```\n\n## Testing\n\n```bash\ncomposer test\n```\n\n## Changelog\n\nPlease see [CHANGELOG](CHANGELOG.md) for more information on what has changed recently.\n\n## Contributing\n\nPlease see [CONTRIBUTING](CONTRIBUTING.md) for details.\n\n## Security Vulnerabilities\n\nPlease review [our security policy](../../security/policy) on how to report security vulnerabilities.\n\n## Credits\n\n- [Stefano Novelli](https://github.com/murdercode)\n- [All Contributors](../../contributors)\n\n## License\n\nThe MIT License (MIT). Please see [License File](LICENSE.md) for more information.\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmurdercode%2Flaravel-admin-bar","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmurdercode%2Flaravel-admin-bar","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmurdercode%2Flaravel-admin-bar/lists"}