-
Well not sure, but as far as i know blade uses @extends('nameoflayout') and @stop instead of @endsection, is that available or is this an out-dated plugin ?
-
Right now, when extending a service in a service provider via `$this->app->share($this->app->extend( ... ))`, the service needs to be registered already for this to work (as it's instantiated and then…
-
We should allow callbacks for all defaults in the framework. Here is an example of where this would be awesome:
``` php
$username = Session::get('username', function () {
return Model_User::get_…