escolalms/consultations
Escola Headless LMS Consultations
Maintainers
Requires
- php: >=7.4
- escolalms/auth: ^0
- escolalms/categories: ^0
- escolalms/core: ^1
- escolalms/files: ^0
- escolalms/jitsi: ^0
- escolalms/model-fields: ^0
- escolalms/settings: ^0
- laravel/framework: >=9.0
Requires (Dev)
- nunomaduro/larastan: ^2.0
- orchestra/testbench: ^7.0
- phpunit/phpunit: ^9.0
Suggests
None
Provides
None
Conflicts
None
Replaces
None
MIT 1a87ba5527673415ef315c50fce31c16204caad2
- Hubert Krzysztofiak <hubert.krzysztofiak.woop@escolasoft.com>
This package is auto-updated.
Last update: 2026-06-13 11:57:03 UTC
README
One to one conversation package
👁 swagger
👁 codecov
👁 phpunit
👁 downloads
👁 downloads
👁 downloads
👁 Maintainability
What does it do
This package is used for creating Consultation for EscolaLms.
Installing
composer require escolalms/consultationsphp artisan migratephp artisan db:seed --class="EscolaLms\Consultations\Database\Seeders\ConsultationsPermissionSeeder"
Schedule
- In App\Console\Kernel to method schedule add
$schedule->job(new ReminderAboutConsultationJob(ConsultationTermReminderStatusEnum::REMINDED_HOUR_BEFORE))->everyFiveMinutes()- reminder about to consultation before one hour, executed every 5 minutes$schedule->job(new ReminderAboutWebinarJob(ConsultationTermReminderStatusEnum::REMINDED_DAY_BEFORE))->everySixHours();- reminder about to consultation before one day, executed every 6 hours
Endpoints
All the endpoints are defined in 👁 swagger
Tests
Run ./vendor/bin/phpunit --filter=Consultation to run tests. See tests folder as it's quite good staring point as documentation appendix.
Test details 👁 codecov
👁 phpunit
Events
EscolaLms\Consultations\Events\ApprovedTerm=> Event is dispatched when trainer approved term reported with buyer. Event refers to users, who have permissions studentsEscolaLms\Consultations\Events\ApprovedTermWithTrainer=> Event is dispatched when trainer approved term reported with buyer. Event refers to users, who have permissions tutorEscolaLms\Consultations\Events\ChangeTerm=> Event is dispatched when trainer changes term in buyed consultations. Event refers to users, who have permissions studentsEscolaLms\Consultations\Events\RejectTerm=> Event is dispatched when trainer rejects term reported with buyer. Event refers to users, who have permissions studentsEscolaLms\Consultations\Events\RejectTermWithTrainer=> Event is dispatched when trainer rejects term reported with buyer. Event refers to users, who have permissions tutorEscolaLms\Consultations\Events\ReminderAboutTerm=> Event is dispatched after execute cron jobEscolaLms\Consultations\Jobs\ReminderAboutConsultationJob, Event is dispatched when deadline for purchased consultation before 1 hours and 1 day. Event refers to users, who have permissions studentsEscolaLms\Consultations\Events\ReminderTrainerAboutTerm=> Event is dispatched some time before start consultation. Event refers to users, who have permissions tutorEscolaLms\Consultations\Events\ReportTerm=> Event is dispatched after reported term with buyer consultation
Listeners
EscolaLms\Webinar\Listeners\ReminderAboutTermListener=> Listener execute a method that singed the status in the webinar reminder
How to use this on frontend.
Admin panel
Left menu
List of consultations
Creating/editing consultation
👁 Creating or editing consultation
Front Application
See implementation in the demo.
Permissions
Permissions are defined in seeder
Database relation
AuthorConsultation is related belong to with UserProposedTermsConsultation model has many to models ConsultationProposedTermCategoriesConsultation belongs to many with models CategoriesUsersConsultation is related belongs to many with User which bought consultationTermsConsultation model has many to models ConsultationUserPivot. It is reported terms
Consultation 1 -> 1 Author
Consultation 1 -> n ProposedTerms
Consultation 1 -> n Categories
Consultation 1 -> n Users
Consultation 1 -> n Terms
