Esempio n. 1
0
 public function indexComments()
 {
     $comments = Comments::orderby('created_at', 'desc')->orderby('approve')->get();
     $data = ['comments' => $comments, 'NewOrderCounter' => Purchase::Neworders()->count()];
     return view('admin.content.comments')->with($data);
 }