Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

README

        

Laravel Logo

Livewire Logo


Build Status
Total Downloads
Latest Stable Version
License

## 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
```