Ejemplo n.º 1
0
 public function rescallindex()
 {
     $openEnquiry = OpenEnquiry::All();
     return view('dashboard.rescall')->with(['openEnquiry' => $openEnquiry]);
 }
Ejemplo n.º 2
0
 /**
  * Returns the dashboard with new calls and open enquiries
  *
  * @return $this
  */
 public function index()
 {
     $data = DataIn::all();
     $openEnquiry = OpenEnquiry::All();
     return view('dashboard.index')->with(['newCalls' => $data, 'openEnquiry' => $openEnquiry]);
 }