Ejemplo n.º 1
0
 /**
  * Display a listing of the resource.
  *
  * @return \Illuminate\Http\Response
  */
 public function index()
 {
     $this->data['price'] = Price::get();
     $this->data['transfer_type'] = TransferType::all()->lists('transfer', 'id');
     return $this->render('price.list');
 }