예제 #1
0
 public function showNotesAll()
 {
     $users = User::all();
     $notes = Notes::all();
     $vars = ["users" => $users, "notes" => $notes];
     return view('backend.page.notes-list')->with($vars);
 }