Question

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

Was it helpful?

Solution

Probably will work if you:

@extends($my_dynamic_template_folder.'.main')
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top