- new frontend style

- GetRecord also with metadata
- no error during publishing
- more home views (etc. help, introduction)
- help image compressed (for web usage)
This commit is contained in:
Arno Kaimbacher 2019-09-12 17:40:21 +02:00
parent 720aa57810
commit d9e295f039
27 changed files with 956 additions and 343 deletions

View file

@ -74,9 +74,9 @@ class HomeController extends Controller
*
* @return \Illuminate\Http\Response
*/
public function about(): View
public function intro(): View
{
return view('frontend.home.about');
return view('frontend.home.intro');
}
/**
@ -89,6 +89,25 @@ class HomeController extends Controller
return view('frontend.home.news');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function services(): View
{
return view('frontend.home.services');
}
/**
* Show the application dashboard.
*
* @return \Illuminate\Http\Response
*/
public function help(): View
{
return view('frontend.home.help');
}
/**
* show page by $page_slug.
*/