문제

i try to make a template system with laravel and php

// controller file

$settigs=json_decode(Settings::find(1));
return View::make('home',array('my_dynamic_template_folder'=>$settigs->theme_folder));

//view file

@extends(' (my template folder) . main ') 

i want to make like this

@extends('{{$my_dynamic_template_folder}}.main')

but i have a error like this View [{{$site_theme}}.main] not found

도움이 되었습니까?

해결책

Probably will work if you:

@extends($my_dynamic_template_folder.'.main')
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top