https://github.com/atiqurcode/jetstream-livewire-crud-admin
Jetstream and livewire combinations admin temlate and crud
https://github.com/atiqurcode/jetstream-livewire-crud-admin
Last synced: 5 months ago
JSON representation
Jetstream and livewire combinations admin temlate and crud
- Host: GitHub
- URL: https://github.com/atiqurcode/jetstream-livewire-crud-admin
- Owner: AtiqurCode
- Created: 2023-10-14T13:49:34.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2023-10-14T14:07:19.000Z (over 2 years ago)
- Last Synced: 2023-10-15T23:32:40.547Z (over 2 years ago)
- Language: Blade
- Homepage: https://jetstream-livewire.gallarygadgets.com
- Size: 150 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Clone and App run process
Basic requirements
- PHP versions 8.1
- composer
- MySQL 8.* (any versions)
```
git clone
composer install
or
composer install --ignore-platform-reqs
```
Copy the **.env.example** file in ***.env***
or just run this command
```
cp .env.example .env
```
Next update the ***.env*** file
Change these keys in the **.env** file
```
APP_URL=http://127.0.0.1:8000 # change this line app run URL
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=laravel_livewire_crud
DB_USERNAME={user_name}
DB_PASSWORD={password}
```
## Command line
Now run the migrate and app run command via the terminal
```
php artisan migrate
php artisan serve
```