Skip to content
This repository was archived by the owner on Sep 17, 2018. It is now read-only.

Laravel and Bard

Mario Basic edited this page Mar 31, 2015 · 8 revisions

Dependency injection in Laravel

use Laravelista\Bard\Sitemap;

class SitemapController {

    protected $sitemap;

    public function __construct(Sitemap $sitemap) 
    {
        $this->sitemap = $sitemap;
    }

}

Resolve out of Service Container IoC in Laravel

$sitemap = App::make('Laravelista\Bard\Sitemap')
Clone this wiki locally