fix lang bug

This commit is contained in:
decoder
2024-04-25 23:29:44 +05:00
parent d8a271adb4
commit 2d0d36af7e
2 changed files with 15 additions and 5 deletions

View File

@@ -407,12 +407,22 @@
}
],
columns: [{
data: 'name',
name: 'forms.name'
data: descColName,
name: 'forms.' + descColName,
createdCell: function(td, cellData, rowData, row, col) {
if (td.innerHTML.length === 0) {
td.innerHTML = rowData.description
}
},
},
{
data: 'description',
name: 'forms.description'
data: titleColName,
name: 'forms.' + titleColName,
createdCell: function(td, cellData, rowData, row, col) {
if (td.innerHTML.length === 0) {
td.innerHTML = rowData.name
}
},
},
@if (auth()->user()->hasRole(\App\Enums\User\RoleEnum::SUPERVISOR->value))
{