Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/devboyarif/order-management-system
Order Management System with TALL (Tailwind + Alpinejs + Laravel + Livewire)
https://github.com/devboyarif/order-management-system
alpinejs laravel livewire order-management ordermanagement tailwind-css tailwindcss tall-stack
Last synced: about 15 hours ago
JSON representation
Order Management System with TALL (Tailwind + Alpinejs + Laravel + Livewire)
- Host: GitHub
- URL: https://github.com/devboyarif/order-management-system
- Owner: devboyarif
- Created: 2023-04-17T17:27:34.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-12-26T19:25:59.000Z (11 months ago)
- Last Synced: 2023-12-26T21:06:34.657Z (11 months ago)
- Topics: alpinejs, laravel, livewire, order-management, ordermanagement, tailwind-css, tailwindcss, tall-stack
- Language: PHP
- Homepage:
- Size: 219 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Order Management System With TALL (TAilwind, Alpinejs, Livewire, Laravel)
This is a simple order management system. It is built with TALL (TAilwind, Alpinejs, Livewire, Laravel) stack### Key Features
## Setup
```bash
# Clone the repo
git clone https://github.com/devboyarif/quiz-system.git
# Install composer dependency
composer install
# Install node modules
npm install / yarn
# Copy environment file
cp .env.example .env
# Set the Application key
php artisan key:generate
# setup the database credentials and migrate database with seeders
php artisan migrate --seed
```
## Development Server
Start the development server on http://localhost:8000
```bash
php artisan serve
```
```bash
npm run watch / yarn watch
``