Skip to content

Instantly share code, notes, and snippets.

@technolize
Created November 21, 2014 09:58
Show Gist options
  • Save technolize/564c9010086515f576ed to your computer and use it in GitHub Desktop.
Save technolize/564c9010086515f576ed to your computer and use it in GitHub Desktop.
<?php
$app->get('/posts/:id', function($id) use ($app) {
$post = Post::find($id);
$app->render("posts/show.twig", ['post' => $post]);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment