@extends('layouts.app') @section('content')
@include('content::content.partials.filter')
@php $columns = [ [ 'title' => 'SN', 'data' => 'DT_RowIndex', 'name' => 'DT_RowIndex', 'orderable' => false, 'searchable' => false, ], ['title' => 'Title', 'data' => 'title', 'name' => 'title'], ['title' => 'Product', 'data' => 'product', 'name' => 'product'], ['title' => 'Category', 'data' => 'category', 'name' => 'category'], ['title' => 'Created By', 'data' => 'createdby', 'name' => 'createdby'], ['title' => 'Status', 'data' => 'status', 'name' => 'status'], ['title' => 'Action', 'data' => 'action', 'orderable' => false, 'searchable' => false], ]; @endphp
@endsection