예제 #1
0
 public function __construct()
 {
     parent::__construct();
     $this->net = $this->DBquery->getNet();
     $this->net = $this->DBquery->Test();
     if (\Session::has('search')) {
         $this->search = \Session::get('search');
     } else {
         $this->search = '';
     }
     if (\Session::has('spanel')) {
         $this->spanel = \Session::get('spanel');
     } else {
         $this->spanel = '';
     }
     if (\Session::has('positive')) {
         $this->positive = \Session::get('positive');
     } else {
         $this->positive = '';
     }
     if (\Session::has('client')) {
         $this->client = \Session::get('client');
     } else {
         $this->client = 'all';
     }
     if (\Session::has('readiness')) {
         $this->readiness = \Session::get('readiness');
     } else {
         $this->readiness = '-1';
     }
     if (\Session::has('dt_end')) {
         $this->dt_end = \Session::get('dt_end');
     } else {
         $this->dt_end = date("d.m.Y");
     }
     if (\Session::has('dt_start')) {
         $this->dt_start = \Session::get('dt_start');
     } else {
         $this->dt_start = date("d.m.Y", strtotime("-3 days"));
     }
     if (\Session::has('datetype')) {
         $this->datetype = \Session::get('datetype');
     } else {
         $this->datetype = '1';
     }
     if (\Session::has('clientid')) {
         $this->clientid = \Session::get('clientid');
     }
 }
예제 #2
0
 public function artisan()
 {
     $exclude = array('start' => 1, 're' => 1, 'os' => 1, 'time' => 1, 'random' => 1, 'sys' => 1, 'json' => 1, 'threading' => 1, 'logging' => 1);
     $keyword = 'core.';
     $res = MainController::core($exclude, $keyword);
     return view('rxqs.all', $res);
 }
예제 #3
0
 /**
  * Create a new password controller instance.
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->middleware('guest');
 }
예제 #4
0
 public function __construct()
 {
     parent::__construct();
 }
예제 #5
0
 /**
  * Create a new authentication controller instance.
  *
  * @return void
  */
 public function __construct()
 {
     parent::__construct();
     $this->middleware('guest', ['except' => 'logout']);
 }