SinglePageController.php 257 B

123456789101112131415161718
  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. class SinglePageController extends Controller
  5. {
  6. /**
  7. * return the main view
  8. * @return view
  9. */
  10. public function index()
  11. {
  12. return view("landing");
  13. }
  14. }