Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/allphptricks/laravel-10-livewire-crud
Laravel 10 Livewire CRUD Application Tutorial
https://github.com/allphptricks/laravel-10-livewire-crud
laravel laravel-10 laravel-10-crud-operation laravel-livewire laravel-livewire-crud livewire livewire-components livewire-crud livewire3
Last synced: about 2 months ago
JSON representation
Laravel 10 Livewire CRUD Application Tutorial
- Host: GitHub
- URL: https://github.com/allphptricks/laravel-10-livewire-crud
- Owner: allphptricks
- Created: 2024-02-26T14:45:50.000Z (11 months ago)
- Default Branch: master
- Last Pushed: 2024-02-26T14:51:00.000Z (11 months ago)
- Last Synced: 2024-10-15T07:21:57.618Z (3 months ago)
- Topics: laravel, laravel-10, laravel-10-crud-operation, laravel-livewire, laravel-livewire-crud, livewire, livewire-components, livewire-crud, livewire3
- Language: PHP
- Homepage: https://www.allphptricks.com/laravel-10-livewire-crud-application-tutorial/
- Size: 76.2 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Laravel 10 Livewire CRUD Application Tutorial
Learn how to develop a Laravel 10 Livewire CRUD application> The complete tutorial step by step guide is available on my blog. [Laravel 10 Livewire CRUD Application](https://www.allphptricks.com/laravel-10-livewire-crud-application-tutorial/)
## Blog
https://www.allphptricks.com/## Installation
Make sure that you have setup the environment properly. You will need minimum PHP 8.1, MySQL/MariaDB, and composer.1. Download the project (or clone using GIT)
2. Copy `.env.example` into `.env` and configure your database credentials
3. Go to the project's root directory using terminal window/command prompt
4. Run `composer install`
5. Set the application key by running `php artisan key:generate --ansi`
6. Run migrations `php artisan migrate`
7. Start local server by executing `php artisan serve`
8. Visit here [http://127.0.0.1:8000/products](http://127.0.0.1:8000/products) to test the application