Replies: 1 comment 1 reply
-
If you want to use Blade, you can return a template: TD::make()->render(fn () => view('path.to.view')) If the string is short, then you can use: use Illuminate\Support\Facades\Blade;
TD::make()->render(fn (string $name) => Blade::render('Hello, {{ $name }}', ['name' => 'Julian Bashir'])) There are other ways, in addition to those indicated, for example, the use of components. You can read it here. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello:
I have this method in a Screen:
Is it possible to specify a HTML class="" for the TDs?
I tried this method, via an inner SPAN, but the x-orchid-icon is not parsed and I guess it makes things more complicated:
Thank you.
Beta Was this translation helpful? Give feedback.
All reactions