public function store()
 {
     $this->validate($this->request, $this->storeRules);
     $this->copy->create($this->request->only('value', 'name'));
     return redirect()->route('admin.copy.index')->with('success', 'Copy created successfully.');
 }