Skip to content

Commit

Permalink
Add built section
Browse files Browse the repository at this point in the history
  • Loading branch information
reziamini committed Jul 17, 2021
1 parent 5313f5c commit fd85cc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions resources/views/livewire/crud/lists.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<td>{{ __('Model') }}</td>
<td>{{ __('Route') }}</td>
<td>{{ __('Status') }}</td>
<td>{{ __('Built') }}</td>
<td>{{ __('Action') }}</td>
</tr>

Expand Down
1 change: 1 addition & 0 deletions resources/views/livewire/crud/single.blade.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
<td> <span class="text-primary">{{ $crud->model }}</span>::<span class="text-danger">class</span> </td>
<td><span class="p-2 badge badge-light text-primary">/{{ $crud->route }}</span> </td>
<td> @if($crud->active) <span class="badge badge-success">Active</span> @else <span class="badge badge-warning">Inactive</span> @endif </td>
<td> @if($crud->built) <span class="badge badge-primary">Yes</span> @else <span class="badge badge-danger">No</span> @endif </td>
<td>
<button @click.prevent="deleteModal = true" class="btn text-danger mt-1">
<i class="icon-trash"></i>
Expand Down

0 comments on commit fd85cc3

Please sign in to comment.