@if (Route::currentRouteName() == 'products.index')
@livewire('products.index')
@endif
@if (Route::currentRouteName() == 'products.stockin')
@livewire('products.stockinput')
@endif
@if (Route::currentRouteName() == 'products.stockout')
@livewire('products.stockoutput')
@endif
@if (Route::currentRouteName() == 'products.ledger')
@livewire('products.ledger', ['product' => $product])
@endif