laravel migration shared hosting code example
Example: how to run migration in shared hosting
<?php
$site_url = 'http://www.my-site-url.com';
$laravel_dir = __DIR__ . '/path/to/laravel';
require $laravel_dir . '/bootstrap/autoload.php';
$app = require_once $laravel_dir . '/bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
echo 'Installing...<br>';
$kernel->call('migrate', ['--force' => true]);
echo 'Seeding...<br>';
$kernel->call('db:seed', ['--force' => true]);
// redirect
echo "<script>window.location = '$site_url'</script>";