Remove remaining ftn/ paths, no functional changes
This commit is contained in:
@@ -14,11 +14,11 @@
|
||||
|
||||
<div class="row">
|
||||
<div class="col-9">
|
||||
<p>This system is aware of the following fileareas @can('admin',(new \App\Models\Filearea))(you can <a href="{{ url('ftn/filearea/addedit') }}">add</a> more)@endcan:</p>
|
||||
<p>This system is aware of the following fileareas @can('admin',(new \App\Models\Filearea))(you can <a href="{{ url('filearea/addedit') }}">add</a> more)@endcan:</p>
|
||||
|
||||
@if (\App\Models\Filearea::count() === 0)
|
||||
@can('admin',(new \App\Models\Filearea))
|
||||
<p>There are no fileareas setup, to <a href="{{ url('ftn/filearea/addedit') }}">set up your first</a>.</p>
|
||||
<p>There are no fileareas setup, to <a href="{{ url('filearea/addedit') }}">set up your first</a>.</p>
|
||||
@else
|
||||
<p class="pad">There are no fileareas - you need to ask an admin to create one for you.</p>
|
||||
@endcan
|
||||
@@ -39,7 +39,7 @@
|
||||
<tbody>
|
||||
@foreach (\App\Models\Filearea::orderBy('name')->with(['domain'])->get() as $oo)
|
||||
<tr>
|
||||
<td><a href="{{ url('ftn/filearea/addedit',[$oo->id]) }}">{{ $oo->id }}</a></td>
|
||||
<td><a href="{{ url('filearea/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