All Projects → bastinald → laravel-livewire-ui

bastinald / laravel-livewire-ui

Licence: other
Laravel Livewire UI, Auth, & CRUD starter kit.

Programming Languages

PHP
23972 projects - #3 most used programming language
Blade
752 projects

Projects that are alternatives of or similar to laravel-livewire-ui

ux
Laravel UI, Auth, & CRUD scaffolding package using Bootstrap & Livewire.
Stars: ✭ 34 (-63.04%)
Mutual labels:  package, crud, auth, scaffolding, livewire
ui
Laravel Livewire & Bootstrap 5 UI & CRUD starter kit.
Stars: ✭ 82 (-10.87%)
Mutual labels:  crud, auth, scaffolding, livewire
Yii2 Enhanced Gii
Enhanced Yii2 Gii (generator) that generates related Models & CRUD
Stars: ✭ 183 (+98.91%)
Mutual labels:  crud, scaffolding
livewire-sortablejs
A Laravel Livewire plugin that makes it easy to use Sortable.js
Stars: ✭ 68 (-26.09%)
Mutual labels:  livewire, laravel-livewire
Sleepingowladmin
🦉 Administrative interface builder for Laravel (Laravel admin)
Stars: ✭ 671 (+629.35%)
Mutual labels:  package, crud
Goodwork
Self hosted project management and collaboration tool powered by TALL stack
Stars: ✭ 1,730 (+1780.43%)
Mutual labels:  livewire, laravel-livewire
powergrid-demo
⚡ PowerGrid fully configured in a Laravel project.
Stars: ✭ 38 (-58.7%)
Mutual labels:  livewire, laravel-livewire
laravel-livewire-modals
Dynamic Laravel Livewire Bootstrap modals.
Stars: ✭ 63 (-31.52%)
Mutual labels:  livewire, laravel-livewire
ocdquery
Over-Complicated Database Query using higher-kinded data
Stars: ✭ 34 (-63.04%)
Mutual labels:  crud
repology-webapp
Repology web application
Stars: ✭ 114 (+23.91%)
Mutual labels:  package
laravel-boilerplate
This is how I start new Laravel projects.
Stars: ✭ 0 (-100%)
Mutual labels:  livewire
Laravel-Tongue
🎉 Finally a subdomain localization that works how you want it to work. 🌐
Stars: ✭ 28 (-69.57%)
Mutual labels:  package
baby-chrome
Get your scaffolded chrome extension project. No more copy-paste!
Stars: ✭ 13 (-85.87%)
Mutual labels:  scaffolding
fast-sg
Fast-SG: An alignment-free algorithm for ultrafast scaffolding graph construction from short or long reads.
Stars: ✭ 22 (-76.09%)
Mutual labels:  scaffolding
auth
www.yiiframework.com/
Stars: ✭ 28 (-69.57%)
Mutual labels:  auth
Releases
A Swift package for resolving released versions from a Git repository
Stars: ✭ 46 (-50%)
Mutual labels:  package
vue-crud-ui
Single file Vue.js script that adds a UI to the PHP-CRUD-API project
Stars: ✭ 47 (-48.91%)
Mutual labels:  crud
ar-command-signs
Minecraft (Spigot) plugin that allows to transform some blocks (Signs, plates and buttons) into a Commands executor
Stars: ✭ 13 (-85.87%)
Mutual labels:  commands
laravel-conditional-providers
THIS PACKAGE HAS BEEN DEPRECATED — Load Laravel service providers and facades based on the current environment.
Stars: ✭ 26 (-71.74%)
Mutual labels:  package
cloup
Library to build command line interfaces (CLIs) based on Click. Cloup = Click + option groups, constraints, command aliases, command sections, help themes, "did you mean ...?" suggestions ...
Stars: ✭ 44 (-52.17%)
Mutual labels:  package

Laravel Livewire Ui

This package will create UI & auth scaffolding for your next Laravel project through a single command. It does so using Laravel Livewire & 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.

Documentation

Requirements

  • A server with Laravel 8 support
  • NPM installed on the dev machine

Packages Used

The following packages are used by this package, so you may want to become familiar with them:

Installation

This package was designed to work with new Laravel projects.

Make a Laravel project via Valet, Docker, or whatever you prefer:

laravel new my-project

Configure your .env APP, DB, and MAIL values:

APP_*
DB_*
MAIL_*

Require the package via composer:

composer require bastinald/laravel-livewire-ui

Make UI scaffolding:

php artisan make:ui

Or, make UI scaffolding including auth:

php artisan make:ui -a

Commands

Making UI

Make UI scaffolding including the layouts, assets, NPM config, etc.:

php artisan make:ui {--a|--auth} {--force}

Use the -a option to make auth at the same time.

Making Auth

Make auth scaffolding including login, register, password resets, etc.:

php artisan make:auth {--force}

Only run this command after making UI if you did not use the -a option.

Clearing the Log

Delete the laravel.log file:

php artisan log:clear

Publishing Stubs

Use your own UI & auth stubs by publishing package files:

php artisan vendor:publish --tag=laravel-livewire-ui

Update the stub_path in config/laravel-livewire-ui.php:

'stub_path' => resource_path('stubs/vendor/laravel-livewire-ui'),

Now edit the stub files inside resources/stubs/vendor/laravel-livewire-ui. The commands will now use these stub files to make UI & auth.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].