laravel-enso / teams
Team management backend for Laravel Enso
Requires
- laravel-enso/core: ^11.0
- laravel-enso/dynamic-methods: ^3.0
- laravel-enso/migrator: ^2.0
- laravel-enso/rememberable: ^3.0
- laravel-enso/select: ^4.0
- dev-master
- 4.3.3
- 4.3.2
- 4.3.1
- 4.3.0
- 4.2.0
- 4.1.2
- 4.1.1
- 4.1.0
- 4.0.0
- 3.0.4
- 3.0.3
- 3.0.2
- 3.0.1
- 3.0.0
- 2.2.5
- 2.2.4
- 2.2.3
- 2.2.2
- 2.2.1
- 2.2.0
- 2.1.9
- 2.1.8
- 2.1.7
- 2.1.6
- 2.1.5
- 2.1.4
- 2.1.3
- 2.1.2
- 2.1.1
- 2.1.0
- 2.0.5
- 2.0.4
- 2.0.3
- 2.0.2
- 2.0.1
- 2.0.0
- 1.0.19
- 1.0.18
- 1.0.17
- 1.0.16
- 1.0.15
- 1.0.14
- 1.0.13
- 1.0.12
- 1.0.11
- 1.0.10
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.4
- 1.0.3
- 1.0.2
- 1.0.1
- 1.0.0
- dev-feature/ensoV8
- dev-upgrade/enso6-dr
- dev-feature/dropSuffix
- dev-fixes/stylci
This package is auto-updated.
Last update: 2026-04-23 09:39:19 UTC
README
Description
Teams adds lightweight team administration to Laravel Enso.
The package stores team records, manages user membership through a pivot table, exposes CRUD-style API endpoints plus select options, and registers search integration for the team model.
Installation
Install the package:
composer require laravel-enso/teams
Run the migrations:
php artisan migrate
Features
- Team model plus many-to-many user membership pivot.
- Index, store, destroy, and options endpoints.
- Request validation through
ValidateTeam. - JSON resources for API payloads.
- Search service provider registration for team search integration.
Usage
Routes are registered under:
- prefix:
api/administration/teams - name prefix:
administration.teams. - middleware:
api,auth,core
Endpoints:
GET /POST /DELETE {team}GET options
The main model is LaravelEnso\Teams\Models\Team.
API
This package exposes its backend integration through the routes, controllers, services, jobs, and configuration points referenced in the usage examples above.
Consumers should rely on the published config keys, documented route groups, and explicit service classes shown in the examples. Internal helper classes, listeners, casts, and background jobs are implementation details unless the README calls them out as extension points.
Depends On
Required Enso packages:
laravel-enso/core↗laravel-enso/dynamic-methods↗laravel-enso/migrator↗laravel-enso/rememberable↗laravel-enso/select↗
Companion frontend package:
Contributions
are welcome. Pull requests are great, but issues are good too.
Thank you to all the people who already contributed to Enso!