Hey Ludek,
I second this problem... the onDeleteCascades are not limited to this relation type - matter of fact we're blocked in our project due to this limitation without doing a lot of workarounds every time we update a revision... so please add this feature just as you do in the "local" relation model which does this just fine.
Your skipper produces this:
Schema::table('tax_order_detail', function (Blueprint $table) {
$table->foreign('order_detail_id')->references('id')->on('order_details');
$table->foreign('tax_id')->references('id')->on('taxes');
});
But should actually be THIS for us.
Schema::table('tax_order_detail', function (Blueprint $table) {
$table->foreign('order_detail_id')->references('id')->on('order_details')->onDelete('cascade');
$table->foreign('tax_id')->references('id')->on('taxes')->onDelete('cascade');
});