@extends('layouts.app') @push('pageTitle') {{ __('labels.products') }} @endpush @push('css') @endpush @section('content')
@include('components.datatable.custom-search', [ 'tableId' => 'datatable-main', 'actionButton' => Auth::user()->can('create', \App\Models\Product::class) ? [ 'text' => __('labels.new_product'), 'url' => route('products.create'), ] : null, ]) @include('components.common.flush-message')
{{-- --}} {{-- --}} @forelse($listresults as $index => $item) @empty @endforelse
@endsection