我该如何以编程方式创建laravel刀片模板,还需要包含母版页,需要另存为views文件夹内的新刀片模板?
答案 0 :(得分:1)
render()
函数从步骤1中获取通用刀片的内容然后只需使用File
门面来实际使用内容生成刀片。像这样:
use Illuminate\Support\Facades\File;
//in your controller method
$file = 'path to your views folder, where you want to generate the blade';
File::put($file, 'content from step 2');
根据您所询问的简短问题,我可以提供的就是这些,而您没有提供任何细节。
我希望对您有帮助