public function getBranchManager()
 {
     $postions = Position::all();
     $branches = Branch::all();
     return view('branch.manager')->with('postions', $postions)->with('branches', $branches);
 }