Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v12] Use str helper to render markdown #3795

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Use str helper to render markdown
  • Loading branch information
lakuapik authored Jul 23, 2021
commit b88966328f28ee8b1ee3cf14f9e60a0d482df892
2 changes: 1 addition & 1 deletion src/resources/views/crud/columns/markdown.blade.php
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
@php
$column['text'] = Illuminate\Mail\Markdown::parse($entry->{$column['name']} ?? '');
$column['text'] = Illuminate\Support\Str::markdown($entry->{$column['name']} ?? '');
$column['escaped'] = $column['escaped'] ?? false;
$column['prefix'] = $column['prefix'] ?? '';
$column['suffix'] = $column['suffix'] ?? '';
Expand Down