Logo

GitLab

Sign in

David Zhong / realops-website

  • Back to Dashboard
  • Project
  • Activity
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 4
  • Merge Requests 0
  • Labels
  • Wiki
  • realops-website
  • app
  • controllers
  • schedule
  • list.php
  • Entirely new Model class
    cc6e8233
    David Zhong authored
    2014-06-04 22:39:51 +1000  
    Browse Code ยป
list.php 150 Bytes
Edit Raw Blame History
1 2 3 4 5 6 7 8 9
<?php
function _list() {
  $flights = Flight::with('user')->all();
  $data['menu'] = 'sked';
  $data['flights'] = $flights;
  View::auto($data);
}

?>