Ahora todos los elementos tienen la opcion de publicarlos mas tarde

This commit is contained in:
Daniel Cortés
2019-10-17 08:38:37 -03:00
parent e67473b3c5
commit 0ccf88d85e
13 changed files with 110 additions and 26 deletions

View File

@@ -14,6 +14,7 @@
<tr>
<th>Id</th>
<th>Title</th>
<th>Published</th>
<th>Date</th>
<th></th>
</tr>
@@ -23,6 +24,7 @@
<tr>
<td>{{$project->id}}</td>
<td>{{ Str::limit($project->title, 30, "...") }}</td>
<td>{{$project->is_published ? "Yes" : "No"}}</td>
<td>{{$project->created_at->format('Y-m-d')}}</td>
<td class="controls">
<a href="{{ route('admin.project.edit', ['project' => $project->id]) }}" class="pure-button button-black-white">Edit</a>