コード例 #1
0
 /**
  * Display a listing of the form.
  * @return Response
  */
 public function index()
 {
     $forms = \BuiltForm::with('cat')->latest()->get();
     $this->layout->title = 'All Built Forms';
     $this->layout->content = \View::make($this->link_type . '.' . $this->current_theme . '.formbuilders.index')->with('forms', $forms);
 }