├── .gitignore ├── .travis.yml ├── LICENSE ├── composer.json ├── phpspec.yml ├── readme.md ├── spec └── Laracasts │ └── Presenter │ └── PresentableTraitSpec.php └── src └── Laracasts └── Presenter ├── Contracts └── PresentableInterface.php ├── Exceptions └── PresenterException.php ├── PresentableTrait.php └── Presenter.php /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/LICENSE -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/composer.json -------------------------------------------------------------------------------- /phpspec.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/phpspec.yml -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/readme.md -------------------------------------------------------------------------------- /spec/Laracasts/Presenter/PresentableTraitSpec.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/spec/Laracasts/Presenter/PresentableTraitSpec.php -------------------------------------------------------------------------------- /src/Laracasts/Presenter/Contracts/PresentableInterface.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/src/Laracasts/Presenter/Contracts/PresentableInterface.php -------------------------------------------------------------------------------- /src/Laracasts/Presenter/Exceptions/PresenterException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/src/Laracasts/Presenter/Exceptions/PresenterException.php -------------------------------------------------------------------------------- /src/Laracasts/Presenter/PresentableTrait.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/src/Laracasts/Presenter/PresentableTrait.php -------------------------------------------------------------------------------- /src/Laracasts/Presenter/Presenter.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/laracasts/Presenter/HEAD/src/Laracasts/Presenter/Presenter.php --------------------------------------------------------------------------------