18:55 Unknown 0 Comments

jika laravel error InvalidArgumentException in FileViewFinder.php line 137: View [welcome] not found.

kemungkinan view tidak ada atau

tambah ini di routes

Route::get('/cmd', function () {
    chdir('../');
    $dir =  getcwd();
    print_r($dir);
    $cmd = shell_exec ('php artisan cache:clear');
    return $cmd;
});

0 comments: