Remove remaining ftn/ paths, no functional changes
This commit is contained in:
@@ -140,7 +140,7 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-12">
|
||||
<a href="{{ url('ftn/echoarea') }}" class="btn btn-danger">Cancel</a>
|
||||
<a href="{{ url('echoarea') }}" class="btn btn-danger">Cancel</a>
|
||||
@can('admin',$o)
|
||||
<button type="submit" name="submit" class="btn btn-success float-end">@if ($o->exists)Save @else Add @endif</button>
|
||||
@endcan
|
||||
|
@@ -14,11 +14,11 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-9">
|
||||
<p>This system is aware of the following echoareas @can('admin',(new \App\Models\Echoarea))(you can <a href="{{ url('ftn/echoarea/addedit') }}">add</a> more)@endcan:</p>
|
||||
<p>This system is aware of the following echoareas @can('admin',(new \App\Models\Echoarea))(you can <a href="{{ url('echoarea/addedit') }}">add</a> more)@endcan:</p>
|
||||
|
||||
@if (\App\Models\Echoarea::count() === 0)
|
||||
@can('admin',(new \App\Models\Echoarea))
|
||||
<p>There are no echoareas setup, to <a href="{{ url('ftn/echoarea/addedit') }}">set up your first</a>.</p>
|
||||
<p>There are no echoareas setup, to <a href="{{ url('echoarea/addedit') }}">set up your first</a>.</p>
|
||||
@else
|
||||
<p class="pad">There are no echoareas - you need to ask an admin to create one for you.</p>
|
||||
@endcan
|
||||
@@ -39,7 +39,7 @@
|
||||
<tbody>
|
||||
@foreach (\App\Models\Echoarea::orderBy('name')->with(['domain'])->get() as $oo)
|
||||
<tr>
|
||||
<td><a href="{{ url('ftn/echoarea/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td>
|
||||
<td><a href="{{ url('echoarea/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td>
|
||||
<td>{{ $oo->name }}</td>
|
||||
<td>{{ $oo->description }}</td>
|
||||
<td>{{ $oo->active ? 'YES' : 'NO' }}</td>
|
||||
|
Reference in New Issue
Block a user