public function dashboard()
 {
     $auctions = Art::take(3)->get();
     $data['auctions'] = $auctions;
     return View('home')->with($data);
 }