I want to change Laravel project's paths (View, Lang, Controller, Model...etc), because my project uses these files from subdomains folders, but i dont know where to modify the framework.
You can try this way:
in bootstrap/app.php change this line to load your derived App class
$app = new Illuminate\Foundation\Application(..
$app = new MyApplication(..
Cross your fingers.