# /database/data/landlord

**Seeded into the landlord (public) schema once**, during `php artisan db:seed --class=LandlordSeeder`.

These CSVs define platform-level reference data — never per-tenant.

## Contents

| File | Purpose |
|---|---|
| `subscription_plans.csv` | Basic / Standard / Premium / Enterprise tiers with pricing |
| `subscription_features.csv` | 14 feature flags controllable per plan |
| `subscription_plan_features.csv` | Plan → feature many-to-many mapping |
| `platform_users.csv` | Initial Blouza super-admins (passwords generated on seed) |

## Notes

- `platform_users.csv` creates users with *temporary* passwords; the seeder will email a reset link or print credentials to the console in local dev.
- Adjust `max_students` / `max_staff` = 0 to mean "unlimited".
- Pricing is in NGN by default. Multi-currency support can be added in `currency` column.
