Laravel – PUT method is not supported for route vehiculos/7676729/edit. Supported methods: GET, HEAD
I'm trying to understand PHP Laravel but can't figure out how to make this put operation. Basically I have my db created with artisan and the table for vehiculos is simple. Schema::create('vehiculos', function (Blueprint $table) { $table->string('id')->foreign('idFk')->references('id')->on('clientes')->onDelete('cascade'); $table->string('marca'); $table->string('modelo'); $table->year('anio');…