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()]); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@taylorotwell you are only showing an example the first test you describe correct? Or am i misunderstanding. How do you go about testing the acual database call?