No Laravel expert here, but maybe this would work:
Hook into the onStartMainWindow event and execute a custom PHP script:
// onStartMainWindow HEScript
procedure OnStartMainWindow;
begin
RunPHP('startup.php');
end;
Then in startup.php:
<?php
// Set up argv for Artisan
$_SERVER['argv'] =...