A bare bones front-end for knockout designed for maximum compatibility with "obsolete" browsers
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
279B

  1. <?php
  2. namespace App\Http\Controllers;
  3. use Illuminate\Http\Request;
  4. use App\Knockout\Event;
  5. class EventController extends Controller {
  6. public function get()
  7. {
  8. return view('page/events', [
  9. 'events' => Event::all()->getRecords()
  10. ]);
  11. }
  12. }