Conditions | 1 |
Paths | 1 |
Total Lines | 13 |
Code Lines | 7 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
59 | public function create(): void |
||
60 | { |
||
61 | $this->authorize('create', BlogArticle::class); |
||
62 | |||
63 | $this->validate(); |
||
64 | |||
65 | $this->form->create(); |
||
66 | |||
67 | $this->showModal = false; |
||
68 | |||
69 | redirect() |
||
70 | ->route('admin.blog.article.index') |
||
71 | ->success('Your article has been created successfully !'); |
||
72 | } |
||
91 |