changes-1

This commit is contained in:
noor
2023-10-10 10:09:39 +05:30
parent 1d1735f61b
commit 389c6d3751
27 changed files with 148 additions and 72 deletions

View File

@@ -85,8 +85,13 @@ class="nav-link active"
<div class="card-body">
{!! Datatable::table()
->addColumn('Name','Description','Author','Website','Version') // these are the column headings to be shown
->setUrl('getplugin') // this is the route where data will be retrieved
->addColumn(
trans('lang.name'),
trans('lang.description'), // Translate the 'Description' column heading
trans('lang.author'), // Translate the 'Author' column heading
trans('lang.website'), // Translate the 'Website' column heading
trans('lang.version') // Translate the 'Version' column heading
) ->setUrl('getplugin') // this is the route where data will be retrieved
->render() !!}
</div>
</div>