├── .travis.yml ├── CHANGELOG.md ├── LICENSE.md ├── composer.json ├── config └── landlord.php ├── readme-header.jpg └── src ├── BelongsToTenants.php ├── Exceptions ├── ModelNotFoundForTenantException.php ├── TenantColumnUnknownException.php ├── TenantExceptionInterface.php ├── TenantNotSetException.php └── TenantNullIdException.php ├── Facades └── Landlord.php ├── LandlordServiceProvider.php └── TenantManager.php /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/LICENSE.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/composer.json -------------------------------------------------------------------------------- /config/landlord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/config/landlord.php -------------------------------------------------------------------------------- /readme-header.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/readme-header.jpg -------------------------------------------------------------------------------- /src/BelongsToTenants.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/BelongsToTenants.php -------------------------------------------------------------------------------- /src/Exceptions/ModelNotFoundForTenantException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/Exceptions/ModelNotFoundForTenantException.php -------------------------------------------------------------------------------- /src/Exceptions/TenantColumnUnknownException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/Exceptions/TenantColumnUnknownException.php -------------------------------------------------------------------------------- /src/Exceptions/TenantExceptionInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/Exceptions/TenantExceptionInterface.php -------------------------------------------------------------------------------- /src/Exceptions/TenantNotSetException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/Exceptions/TenantNotSetException.php -------------------------------------------------------------------------------- /src/Exceptions/TenantNullIdException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/Exceptions/TenantNullIdException.php -------------------------------------------------------------------------------- /src/Facades/Landlord.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/Facades/Landlord.php -------------------------------------------------------------------------------- /src/LandlordServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/LandlordServiceProvider.php -------------------------------------------------------------------------------- /src/TenantManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hipsterjazzbo/Landlord/HEAD/src/TenantManager.php --------------------------------------------------------------------------------