- Laravel 9.x
- Livewire 2.x
- Twillo (SMS)
- Firebase (Push Notifications)
- Project https://github.com/dexbytesinfotech/laravel-api should be pre-installed in your server or machine
- Run git clone https://github.com/dexbytesinfotech/livewire.git livewire-admin-panel
- From the projects root run
cp .env.example .env - Configure your
.envfile - Use a same api database (https://github.com/dexbytesinfotech/laravel-api) for the project
- From the projects root folder run
composer update - From the projects root folder run
php artisan key:generate - From the projects root folder run
php artisan db:seed - From the projects root folder run
composer dump-autoload - From the projects root folder run
php artisan storage:link - From the projects root folder run (local)
php artisan schedule:workfor server use supervisor - From the projects root folder run (local)
php artisan schedule:workfor server use scheduling * * * * * cd /path-to-your-project && php artisan schedule:run >> /dev/null 2>&1
- Check the permissions on the storage directory:
chmod -R 775 storage - Check the ownership of the storage directory: :
chown -R www-data:www-data storage
- Unverified
- Cusotmer
- Admin
- Vendor
| Password | Access | |
|---|---|---|
| admin@admin.com | admin123 | Admin Access |
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteRule ^(.*)$ public/$1 [L]
</IfModule>