Download the PHP package elaborate-code/laravel-algerian-education-system without Composer
On this page you can find all versions of the php package elaborate-code/laravel-algerian-education-system. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download elaborate-code/laravel-algerian-education-system
More information about elaborate-code/laravel-algerian-education-system
Files in elaborate-code/laravel-algerian-education-system
Package laravel-algerian-education-system
Short Description Tables migrations seeded with the structure of the algerian education system for Laravel apps
License MIT
Homepage https://github.com/elaborate-code/laravel-algerian-education-system
Informations about the package laravel-algerian-education-system
Laravel algerian education system structure
If you are building a Learning Management System or a School Management System and targeting the Algerian market, this package is perfect to kick start your project by providing migrations and seeders according to the Algerian education system structure. see tables.md
Installation
Install the package via composer:
Publish and run the migrations:
You may need to rename the migration to something like 2014_10_12_200000_create_cycles_table.php
, 2014_10_12_200000_create_class_types_table.php
to make them run automatically with the first migrations.
Publishing config file [Optional]
You can publish the config file with:
This is the contents of the published config file:
That allows you to rename the tables
names before running the migrations.
Usage
Seeders
After publishing and running the migrations, add the seeders to the called seeders list:
AlgerianEducationSystemSeeder
is the main seeder that calls:CycleSeeder
ClassTypeSeeder
MergePrescolaireIntoPrimaireCycleSeeder
as the name states it deletes thepre-scolaire
cycle row, and edits thepre-scolaire
class type to belong toprimaire
cycle
Or call it directly from the command line:
Models
The models ElaborateCode\AlgerianEducationSystem\Models\Cycle
and ElaborateCode\AlgerianEducationSystem\Models\ClassType
give you access to a set of relationships. so either use them or extend them.
Cycle::classTypes(): HasMany
ClassType::cycle(): BelongsTo
ClassType::previousClassType(): BelongsTo
ClassType::nextClassTypes(): HasMany
ClassType::previousLevelClassTypes(): HasMany
ClassType::nextLevelClassTypes(): HasMany
Testing
Changelog
Please see CHANGELOG for more information on what has changed recently.
Contributing
Please see CONTRIBUTING for details.
Security Vulnerabilities
Please review our security policy on how to report security vulnerabilities.
Credits
- medilies
- All Contributors
License
The MIT License (MIT). Please see License File for more information.
All versions of laravel-algerian-education-system with dependencies
spatie/laravel-package-tools Version ^1.9.2
illuminate/contracts Version ^9.0