Exemplo n.º 1
0
 /**
  * Display a listing of the resource.
  * Todo:: this is only a quick solution! Only to present currency data from the table
  *
  * @return Response
  */
 public function index()
 {
     $data = Currency::all()->toArray();
     return ['SUCCESS' => $data];
 }