コード例 #1
0
 public function getInviteNotif()
 {
     $id = Session::get('user');
     $data = array('notifikasi' => Notifikasi::with('mhs')->where('recepient', '=', $id)->where('accept', '=', 0)->orderBy('id', 'desc')->get());
     return view('frontend.includes.grup-invite-notif')->with($data);
 }