public function store(MotherboardRequest $request)
 {
     $motherboards = new Motherboard($request->all());
     $motherboards->save();
     Flash::info('Your motherboard has been added');
     return redirect('motherboards');
 }