Twigの利用
パッケージの追加
php ../composer.phar require rcrowe/twigbridge
Controllerで利用する
use Twig\Environment as TwigEnvironment;
class CartsController extends Controller
{
protected $twig;
public function __construct(TwigEnvironment $twig)
{
$this->twig = $twig;
}
public function index(Request $request)
{
return $this->twig->render('home/index.twig', $replace);
}
}