Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ashraftryfie/simple-tasks-crud-laravel-livewire
Simple Livewire App using Laravel Framework 10 to show how it works.
https://github.com/ashraftryfie/simple-tasks-crud-laravel-livewire
blade bootstrap4 crud css3 html5 laravel livewire pagination php
Last synced: 15 days ago
JSON representation
Simple Livewire App using Laravel Framework 10 to show how it works.
- Host: GitHub
- URL: https://github.com/ashraftryfie/simple-tasks-crud-laravel-livewire
- Owner: ashraftryfie
- Created: 2024-04-06T16:59:27.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-04-07T04:17:24.000Z (7 months ago)
- Last Synced: 2024-10-09T10:45:42.999Z (about 1 month ago)
- Topics: blade, bootstrap4, crud, css3, html5, laravel, livewire, pagination, php
- Language: JavaScript
- Homepage:
- Size: 410 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Simple Tasks CRUD Example using Livewire V3
![Application Screenshot](https://github.com/ashraftryfie/simple-tasks-crud-laravel-livewire/assets/108266434/d5a98fc6-a8ab-4efb-a29c-71ade63d53df)### To install the application
- Clone the repo :
```bash
git clone https://github.com/ashraftryfie/simple-tasks-crud-laravel-livewire
```
- Copy `.env-example` as `.env` file
- Create database and modify `.env` file with your db name and db account details.
- Install vendor packages :
```bash
composer install
npm install
npm run dev
```
- Database Migrate :
```bash
php artisan migrate
```
- Generate the app key:
```bash
php artisan key:generate
```
- Database Seed:
```bash
php artisan db:seed
```
- Run the project:
```bash
php artisan serve
```