fix up urls to follow a cleaner pattern
This commit is contained in:
parent
d822811a5d
commit
dcf2f6fa0a
5 changed files with 81 additions and 43 deletions
|
@ -44,7 +44,7 @@
|
|||
<tbody>
|
||||
@foreach($options as $option)
|
||||
<tr>
|
||||
<td><a href="{{ route('admin.services.option', $option->id) }}">{{ $option->name }}</a></td>
|
||||
<td><a href="{{ route('admin.services.option', [ $service->id, $option->id]) }}">{{ $option->name }}</a></td>
|
||||
<td>{!! $option->description !!}</td>
|
||||
<td><code>{{ $option->docker_image }}</code></td>
|
||||
<td><code>{{ $option->tag }}</code></td>
|
||||
|
|
Reference in a new issue