示例:多租户的自定义Blade指令
@if (app('context')->isPublic())
© Copyright MyApp LLC
@else
© Copyright {{ app('context')->client->name }}
@endif// Binding
Blade::directive('ifPublic', function () {
return "<?php if (app('context')->isPublic()): ?>";
});
// In use
@ifPublic
© Copyright MyApp LLC
@else
© Copyright {{ app('context')->client->name }}
@endifLast updated