CONTACTO
@push('readyjs') $('#formulario_contacto').submit(function(e) { e.preventDefault() var nombre = $(this).find("[name='nombre']").val() var telefono = $(this).find("[name='telefono']").val() var email = $(this).find("[name='email']").val() var mensaje = $(this).find("[name='mensaje']").val() $.post('{{$urls->base}}/contacto', {nombre: nombre, telefono: telefono, email: email, mensaje: mensaje}, function(data) { console.debug(data) }, 'json') return false }) $('#map').embed() @endpush