{"id":36986534,"url":"https://github.com/stats4sd/laravel-ui","last_synced_at":"2026-01-13T23:04:29.347Z","repository":{"id":46269377,"uuid":"355147022","full_name":"stats4sd/laravel-ui","owner":"stats4sd","description":"A fork of the legacy Laravel UI, used to quickly setup Laravel Backpack projects to use custom compiled front-end assets","archived":true,"fork":true,"pushed_at":"2022-07-18T17:54:44.000Z","size":262,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"3.x","last_synced_at":"2024-12-21T14:37:51.128Z","etag":null,"topics":["laravel-package"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":false,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"laravel/ui","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/stats4sd.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","code_of_conduct":".github/CODE_OF_CONDUCT.md","threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":".github/SECURITY.md","support":null}},"created_at":"2021-04-06T10:25:16.000Z","updated_at":"2023-01-27T23:00:45.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/stats4sd/laravel-ui","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/stats4sd/laravel-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stats4sd%2Flaravel-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stats4sd%2Flaravel-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stats4sd%2Flaravel-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stats4sd%2Flaravel-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/stats4sd","download_url":"https://codeload.github.com/stats4sd/laravel-ui/tar.gz/refs/heads/3.x","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/stats4sd%2Flaravel-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28405120,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-13T21:51:37.118Z","status":"ssl_error","status_checked_at":"2026-01-13T21:45:14.585Z","response_time":56,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["laravel-package"],"created_at":"2026-01-13T23:04:28.775Z","updated_at":"2026-01-13T23:04:29.339Z","avatar_url":"https://github.com/stats4sd.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Backpack UI\n\nThis fork of Laravel UI adds all the necessary scaffolding to start customising the default theme of [Laravel Backpack](https://github.com/Laravel-Backpack/CRUD). While Backpack provides a robust way to create your own themes to completely reskin the application, we've become used to simply replacing backpack's css assets with our own compiled sass files (maybe this isn't best practice, but we find it easier, as we can then do things like change the bootstrap variables to change the colour scheme consistently throughout the admin panel AND any front-end pages...)\n\n\n\u003e NOTE: This adds the same `ui` commands as the original repo, so it will conflict with the original! Please do not install this alongside laravel/ui - choose whichever one suits your needs more: \n\u003e - Do you need to compile your own custom front-end asssets for Laravel Backpack? Choose this repo\n\u003e - Do you need to scaffold an Auth system for your legacy Laravel app? Choose laravel/ui. \n\n### To Use\n\n\u003e This legacy package is a very simple authentication scaffolding built on the Bootstrap CSS framework. While it continues to work with the latest version of Laravel, you should consider using [Laravel Breeze](https://github.com/laravel/breeze) for new projects. Or, for something more robust, consider [Laravel Jetstream](https://github.com/laravel/jetstream).\n\n### Supported Versions\n\nOnly the latest major version of Laravel UI receives bug fixes. The table below lists compatible Laravel versions:\n\n| Version | Laravel Version |\n|---- |----|\n| [1.x](https://github.com/laravel/ui/tree/1.x) | 5.8, 6.x |\n| [2.x](https://github.com/laravel/ui/tree/2.x) | 7.x |\n| [3.x](https://github.com/laravel/ui/tree/3.x) | 8.x, 9.x |\n\n### Installation\n\nThe Bootstrap and Vue scaffolding provided by Laravel is located in the `laravel/ui` Composer package, which may be installed using Composer:\n\n```bash\ncomposer require stats4sd/laravel-ui\nphp artisan ui backpack\n```\n\nThis will do the equivalent of running `ui vue` (described below), but will also add the required dependancies to allow you to **completely replace** backpack's css file with your own compiled `public/css/app.css` file. \n\nYou should probably NOT use this to scaffoled auth routes for your laravel app! If you're using Backpack, that comes with its own routes, which can be used - or consider Laravel Breeze (below). \n\n## Notes from Original Repo:\n\nThis legacy package is a very simple authentication scaffolding built on the Bootstrap CSS framework. While it continues to work with the latest version of Laravel, you should consider using [Laravel Breeze](https://github.com/laravel/breeze) for new projects. Or, for something more robust, consider [Laravel Jetstream](https://github.com/laravel/jetstream).\n\n## Contributing\n\nThis is a fork of the main repository available here: https://github.com/laravel/ui. If you wish to contribute to the main functionality, please consider contributing to the main repo.\n\nIf you wish to contribute to the Laravel Backpack integration added here, please feel free to do so by forking this repo and submitting a PR.\n\n## License\n\nThis repo is licensed in the same way as the original repo - with an [MIT License (MIT)](LICENCE.md). \n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstats4sd%2Flaravel-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fstats4sd%2Flaravel-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fstats4sd%2Flaravel-ui/lists"}