LGV
Leonel Gonzalez Vidales
Insurance Registration Form - Copy this Html, Bootstrap Component to your project
Crea un formulario para el siguiente esquema de Laravel: Schema::create('aseguradoras', function (Blueprint $table) { $table >integer('clave_aseguradora') >primary(); // Clave primaria $table >string('nombre', 255); // Nombre VARCHAR(255) $table >dateTime('fecha_inicial'); // Fecha inicial DATETIME $table >dateTime('fecha_final'); // Fecha final DATETIME $table >string('no_seguro', 255); $table >timestamps(); });
Prompt
