Created
December 2, 2016 00:49
-
-
Save MarkBaker/7dd4bd939a0f3f4809970443fdc99cb0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 | |
class evidenceController { | |
public function getDetails($id){ | |
$course = Course::with(['courseType']) | |
->checkEstablishmentOnView() | |
->excludeArchived() | |
->findOrFail($id); | |
$view = View::make('courses/parts/details') | |
->with('course', $course); | |
return Response::json(['html' => $view->render()]); | |
} | |
} |
Returning a HTML blob in a JSON response?
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@ramirezd42 With integration tests instead of unit tests.