سؤال

Heres the controller:

class HomeController extends BaseController {
    public function index() {
        return View::make('home', array('username' => 'Vaughan'));
    }
}

Here the home blade view:

{{ $username }}

Yet the view is outputting exactly this:

{{ $username }}

The variable is not being rendered. Could this be something to do with Apache or PHP?

هل كانت مفيدة؟

المحلول

You need to name your view with blade extension:

home.blade.php

That's all.

مرخصة بموجب: CC-BY-SA مع الإسناد
لا تنتمي إلى StackOverflow
scroll top