├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── phpunit.xml ├── src └── ServiceProvider.php └── tests ├── TestCase.php └── Unit └── EloquentLatestRelationTest.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/composer.lock -------------------------------------------------------------------------------- /phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/phpunit.xml -------------------------------------------------------------------------------- /src/ServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/src/ServiceProvider.php -------------------------------------------------------------------------------- /tests/TestCase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/tests/TestCase.php -------------------------------------------------------------------------------- /tests/Unit/EloquentLatestRelationTest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nullthoughts/laravel-latest-relation/HEAD/tests/Unit/EloquentLatestRelationTest.php --------------------------------------------------------------------------------