SinglePageController.php 399 B

1234567891011121314151617181920
  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. $appSettings = \Illuminate\Support\Facades\DB::table('options')->pluck('value', 'key')->toJson();
  13. return view('landing')->with('appSettings', $appSettings);
  14. }
  15. }