laravelDone method
Implementation
void laravelDone({String path, String projectName}) async {
ANSIPrinter().printRGB('Laravel start installing dependency',
bGray: 1.0, fColor: 0xff4BB543);
await shell.cd(path + '/$projectName').run('composer update').then((a) {
shell
.cd(path + '/$projectName')
.run('''php artisan migrate ''').then((a) {
shell
.cd(path + '/$projectName')
.run('php artisan passport:install')
.then((a) {
ANSIPrinter().printRGB('Now Every thing is done :) Great ',
breakLine: true, bGray: 1.0, fColor: 0xff4BB543);
});
});
});
}