// Add this to Laravel routes/web.php.
// Replace PLAY_STORE_URL with your real Google Play Store URL.

use Illuminate\Support\Facades\Route;

Route::get('/movie/{id}', function ($id) {
    return redirect()->away('PLAY_STORE_URL');
})->whereNumber('id');
