Untitled
user_5905108
php_laravel_blade
2 years ago
1.5 kB
13
No Index
Inside resources/views/admin/pages/index.blade.php change this:
<th>{{ trans('title') }}</th>
<th>{{ trans('description') }}</th>
<th>{{ trans('status') }}</th>
<th class="text-right">{{ trans('options') }}</th>
</tr>
</thead>
<tbody>
@foreach ($pages as $key => $page)
<tr>
<td>{{ ($key+1) }}</td>
<td>{{ $page->title }}</td>
to this:
<th>{{ trans('title') }}</th>
<th>{{ trans('slug') }}</th>
<th>{{ trans('description') }}</th>
<th>{{ trans('status') }}</th>
<th class="text-right">{{ trans('options') }}</th>
</tr>
</thead>
<tbody>
@foreach ($pages as $key => $page)
<tr>
<td>{{ ($key+1) }}</td>
<td>{{ $page->title }}</td>
<td>{{ $page->slug }}</td>Editor is loading...
Leave a Comment