The Clinical Learning Quality Environment Inventory is a validated instrument that measures the clinical learning quality as experienced by nursing students, according to five factors:
- quality of the tutorial strategies,
- learning opportunities,
- safety and nursing care quality,
- self-direct learning,
- quality of the learning environment.
More details at URL https://www.ncbi.nlm.nih.gov/m/pubmed/28398391/ .
composer install
npm install
# To use default URL http://localhost:8000
php scripts/setup.php
# To use custom URL
# php scripts/setup.php --application_url=<APPLICATION_URL>
# To add phpLiteAdmin, reachable at URL <APPLICATION_URL>/phpliteadmin/phpliteadmin.php
# php scripts/setup.php --with_phpliteadmin
php artisan migrate --seed
- add
- real administrators and viewers
- real stage locations and wards
- an image file logo.svg or logo.png or logo.jpg into public folder
- disable
- example administrators, viewers and students
php artisan tinker >>> App\User::where('email', '[email protected]')->first()->delete(); >>> App\User::where('email', '[email protected]')->first()->delete(); >>> $user = App\User::where('email', '[email protected]')->first(); >>> $user->delete(); >>> $user->student()->delete();
- example stage locations and wards
php artisan tinker >>> App\Models\Location::where('name', 'Example location')->first()->delete(); >>> App\Models\Ward::where('name', 'Example ward')->first()->delete();
- example administrators, viewers and students
- within file .env customize
- students' identification number pattern
- students' e-mail pattern
- educational institution URL
rm -rf vendor
rm -rf node_modules
php scripts/setdown.php
composer update
npm update
npm audit fix
npm audit fix --force # required if fix requires breaking changes
npm update
npm run production
npm run production # required if development dependencies have been installed by previous step
php artisan serve
php artisan tinker
>>> App\User::withTrashed()->where('email', '[email protected]')->first()->restore();
>>> App\User::withTrashed()->where('email', '[email protected]')->first()->restore();
>>> $user = App\User::withTrashed()->where('email', '[email protected]')->first();
>>> $user->restore();
>>> $user->student()->restore();