0
我想爲我的Laravel項目創建簡碼系統以在另一個頁面中包含頁面。我如何創建包含在刀片中的頁面的簡碼
任何人都有解決方案?
[include]test[/include] -> @include('test');
我想爲我的Laravel項目創建簡碼系統以在另一個頁面中包含頁面。我如何創建包含在刀片中的頁面的簡碼
任何人都有解決方案?
[include]test[/include] -> @include('test');
This package可能是你想要的。
喜歡的東西:
class IncludeShortcode {
public function register($shortcode, $content, $compiler, $name)
{
return view($content);
}
}
Shortcode::register('include', 'IncludeShortcode');
沒有測試,但應該讓你在正確的方向前進。