コード例 #1
0
 /**
  * Return all of the security logs
  *
  * @return mixed
  */
 public function getAllSecurityLogs()
 {
     return SecurityLog::with('user');
 }
コード例 #2
0
 /**
  * Return all of the security logs
  *
  * @param int $paginate
  *
  * @return mixed
  */
 public function getAllSecurityLogs($paginate = 50)
 {
     return SecurityLog::with('user')->orderBy('created_at', 'desc')->paginate($paginate);
 }