Last active
December 27, 2015 10:39
-
-
Save adamwathan/7312671 to your computer and use it in GitHub Desktop.
Slightly different presenter approach vs. https://github.com/laracasts/Presenters/blob/master/Presenters/PresenterCollection.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php namespace Acme\Presenters; | |
use Illuminate\Support\Collection; | |
abstract class Presenter { | |
protected $resource; | |
public function __construct($resource) | |
{ | |
$this->resource = $resource; | |
} | |
public static function presentCollection($collection) | |
{ | |
$presentedCollection = new Collection; | |
foreach($collection as $key => $value) { | |
$presentedCollection->put($key, new static($value)); | |
} | |
return $presentedCollection; | |
} | |
public function __get($name) | |
{ | |
if (method_exists($this, $name)) | |
{ | |
return $this->{$name}(); | |
} | |
return $this->resource->{$name}; | |
} | |
} | |
// Back in the controller... | |
$users = User::all(); | |
return View::make('users')->with('users', UserPresenter::presentCollection($users)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment