{"id":15016866,"url":"https://github.com/bastinald/laravel-livewire-ui","last_synced_at":"2025-04-13T09:41:13.915Z","repository":{"id":61186523,"uuid":"373982499","full_name":"bastinald/laravel-livewire-ui","owner":"bastinald","description":"Laravel Livewire UI, Auth, \u0026 CRUD starter kit.","archived":false,"fork":false,"pushed_at":"2024-03-17T20:43:39.000Z","size":199,"stargazers_count":102,"open_issues_count":2,"forks_count":17,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-03-27T01:11:13.587Z","etag":null,"topics":["auth","bootstrap","commands","crud","generator","laravel","laravel-livewire","livewire","package","php","scaffolding","ui"],"latest_commit_sha":null,"homepage":"","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/bastinald.png","metadata":{"files":{"readme":"readme.md","changelog":null,"contributing":null,"funding":null,"license":null,"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}},"created_at":"2021-06-04T23:44:10.000Z","updated_at":"2025-01-11T15:06:27.000Z","dependencies_parsed_at":"2024-09-24T20:31:10.748Z","dependency_job_id":null,"html_url":"https://github.com/bastinald/laravel-livewire-ui","commit_stats":{"total_commits":62,"total_committers":1,"mean_commits":62.0,"dds":0.0,"last_synced_commit":"bd3ce4f2cf15c0d57a6689ad619d8c774346e8c2"},"previous_names":[],"tags_count":62,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bastinald%2Flaravel-livewire-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bastinald%2Flaravel-livewire-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bastinald%2Flaravel-livewire-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/bastinald%2Flaravel-livewire-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/bastinald","download_url":"https://codeload.github.com/bastinald/laravel-livewire-ui/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248693393,"owners_count":21146788,"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","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":["auth","bootstrap","commands","crud","generator","laravel","laravel-livewire","livewire","package","php","scaffolding","ui"],"created_at":"2024-09-24T19:49:29.835Z","updated_at":"2025-04-13T09:41:13.896Z","avatar_url":"https://github.com/bastinald.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Laravel Livewire Ui\n\nThis package will create UI \u0026 auth scaffolding for your next Laravel project through a single command. It does so using Laravel Livewire \u0026 Bootstrap 5. Think of it as a minimal, modernized version of the old Laravel UI package. This is ideal for people who prefer Bootstrap over Tailwind, and don't need all the extra's that come with Jetstream.\n\n## Documentation\n\n- [Requirements](#requirements)\n- [Packages Used](#packages-used)\n- [Installation](#installation)\n- [Commands](#commands)\n    - [Making UI](#making-ui)\n    - [Making Auth](#making-auth)\n- [Publishing Stubs](#publishing-stubs)\n\n## Requirements\n\n- A server with Laravel 8 support\n- NPM installed on the dev machine\n\n## Packages Used\n\nThe following packages are used by this package, so you may want to become familiar with them:\n\n- [Laravel Automatic Migrations](https://github.com/bastinald/laravel-automatic-migrations)\n- [Laravel Livewire Routes](https://github.com/bastinald/laravel-livewire-routes)\n- [Honey](https://github.com/lukeraymonddowning/honey)\n\n## Installation\n\nThis package was designed to work with new Laravel projects.\n\nMake a Laravel project via Valet, Docker, or whatever you prefer:\n\n```console\nlaravel new my-project\n```\n\nConfigure your `.env` APP, DB, and MAIL values:\n\n```env\nAPP_*\nDB_*\nMAIL_*\n```\n\nRequire the package via composer:\n\n```console\ncomposer require bastinald/laravel-livewire-ui\n```\n\nMake UI scaffolding:\n\n```console\nphp artisan make:ui\n```\n\nOr, make UI scaffolding including auth:\n\n```console\nphp artisan make:ui -a\n```\n\n## Commands\n\n### Making UI\n\nMake UI scaffolding including the layouts, assets, NPM config, etc.:\n\n```console\nphp artisan make:ui {--a|--auth} {--force}\n```\n\nUse the `-a` option to make auth at the same time.\n\n### Making Auth\n\nMake auth scaffolding including login, register, password resets, etc.:\n\n```console\nphp artisan make:auth {--force}\n```\n\nOnly run this command after making UI if you did not use the `-a` option.\n\n### Clearing the Log\n\nDelete the `laravel.log` file:\n\n```console\nphp artisan log:clear\n```\n\n## Publishing Stubs\n\nUse your own UI \u0026 auth stubs by publishing package files:\n\n```console\nphp artisan vendor:publish --tag=laravel-livewire-ui\n```\n\nUpdate the `stub_path` in `config/laravel-livewire-ui.php`:\n\n```php\n'stub_path' =\u003e resource_path('stubs/vendor/laravel-livewire-ui'),\n```\n\nNow edit the stub files inside `resources/stubs/vendor/laravel-livewire-ui`. The commands will now use these stub files to make UI \u0026 auth.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbastinald%2Flaravel-livewire-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fbastinald%2Flaravel-livewire-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fbastinald%2Flaravel-livewire-ui/lists"}