public function __construct(Rate $rate, $abbr)
 {
     $this->rate = $rate->where('to', '=', $abbr)->first();
 }
 public function homepage(Request $request, Rate $rate)
 {
     $currencies = $rate->all();
     return view('index')->with('currencies', $currencies);
 }