Pregunta

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

¿Fue útil?

Solución

Probably will work if you:

@extends($my_dynamic_template_folder.'.main')
Licenciado bajo: CC-BY-SA con atribución
No afiliado a StackOverflow
scroll top