/**
  * Store a newly created resource in storage.
  *
  * @return Response
  */
 public function store()
 {
     //
     $person = Person::create(Request::all());
     $employee = new Employee();
     $employee->is($person);
     $employee->locations()->attach(Location::current());
     return ['id' => $employee->id, 'full_name' => $person->full_name, 'title' => $person->title, 'email' => $person->email, 'tel' => $person->tel];
 }