Conditions | 3 |
Paths | 4 |
Total Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
9 | public function handle(LaravelTrix $trix, \Closure $next) |
||
10 | { |
||
11 | $html = is_object($trix->model) && $trix->model->exists ? htmlspecialchars(optional($trix->model->trixRichText()->where('field', $trix->config['field'])->first())->content, ENT_QUOTES) : ''; |
||
12 | |||
13 | $trix->html .= "<input id='{$trix->config['id']}' value='{$html}' name='{$trix->loweredModelName}-trixFields[{$trix->config['field']}]' type='hidden'>"; |
||
14 | |||
15 | return $next($trix); |
||
16 | } |
||
17 | } |
||
18 |