/**
  * Remove the specified resource from storage.
  *
  * @param  int  $id
  * @return Response
  */
 public function destroy($id)
 {
     $delete_marca = Marca::find($id);
     $delete_marca->delete();
     return \Response::json(array('datos' => Marca::all()));
 }