diff --git a/app/controller/IndexController.php b/app/controller/IndexController.php index 31e1c43..435a182 100644 --- a/app/controller/IndexController.php +++ b/app/controller/IndexController.php @@ -8,7 +8,11 @@ class IndexController { public function index(Request $request) { - return response('hello webman'); + static $readme; + if (!$readme) { + $readme = file_get_contents(base_path('README.md')); + } + return $readme; } public function view(Request $request)