| Conditions | 1 |
| Paths | 1 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 16 | public function index() |
||
| 17 | { |
||
| 18 | $pageData = [ |
||
| 19 | 'pageTitle' => trans('larablog.contact.pageTitle'), |
||
| 20 | 'pageDesc' => trans('larablog.contact.pageDesc'), |
||
| 21 | 'title' => trans('larablog.contact.title'), |
||
| 22 | 'subtitle' => trans('larablog.contact.subtitle'), |
||
| 23 | 'image' => config('blog.contact_page_image'), |
||
| 24 | ]; |
||
| 25 | |||
| 26 | return view('blog.pages.contact', $pageData); |
||
|
|
|||
| 27 | } |
||
| 43 |