PHP 8.2

Create database, grant permmissions and upload db.sql

edit .env and add database info

ADMIN URL

https://yourdomain.com/admin/login

email: super@happ.com
password: admin123

after install

open public folder and delete storage folder

then run artisan command

php artisan storage:link

if you're using cpanel and don't have terminal

nagivate to routes/web.php and add the following just after // Route for cron jobs

Route::get('/link', function () {
    Artisan::call('storage:link');
});

then go to the link = https://yourdomain.com/link(this will run the storage:link command)


add cron jobs

https://yourdomain.com/cron >> /dev/null 2>&1

cd /path/to/public_html/ && php artisan queue:work >> /dev/null 2>&1