/**
  * Display a listing of the resource.
  *
  * @return Response
  */
 public function index()
 {
     $offices = Office::paginate(10);
     return View::make('admin.offices.index')->with('offices', $offices);
 }