@emilsgulbis posted a way to use blade templates for WooCommerce. (https://github.com/roots/sage/issues/1807 ).
…you should create 2 files in templates/woocommerce - archive-product.php and single-product.php and add only
<?php echo App\Template('woocommerce'); to them. Then in templates/woocommerce add woocommerce.blade.php that contains @extends('layouts.base') @section('content') @php(woocommerce_content()) @endsection
The only thing I did different was to place woocommerce.blade.php
file inside theme/template folder instead of theme/template/woocommerce.