36 lines
1.2 KiB
PHP
36 lines
1.2 KiB
PHP
@extends('layouts.app')
|
|
|
|
@section('content')
|
|
<div class="container-fluid">
|
|
<x-dashboard.breadcumb :title="$title" />
|
|
|
|
|
|
@include('content::content.partials.filter')
|
|
|
|
<div class="card">
|
|
<div class="card-body">
|
|
@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
|
|
|
|
<x-data-table-script :route="route('content.index')" :columns="$columns" />
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
@endsection
|