Final work of Antonio Marfil Sánchez. GoodLearn is an information system focused on educational centers and that serves as a communication channel between parents and teachers.
Follow this instruction if you want to start a env of laravel with ionic
Things that you need for run a Laravel project:
Next step is create a new project of Laravel with composer:
composer create-project laravel/laravel example-app
For running the project use that:
cd example-app
php artisan serve
Things that you need for run a Ionic project:
Next step is update npm and install Ionic with these commands:
npm install npm@latest -g
npm install -g @ionic/cli
Now we can create our Ionic app with that command:
ionic start myApp tabs
For running the app use that:
cd myApp
ionic serve