Make a hotlink to users systems on the dashboard
This commit is contained in:
parent
23e8522e1a
commit
8095a8299c
@ -23,7 +23,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
@foreach ($user->systems as $o)
|
@foreach ($user->systems as $o)
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ $o->name }}</th>
|
<th><a href="{{ url('ftn/system/addedit',[$o->id]) }}">{{ $o->name }}</a></th>
|
||||||
<th class="text-end">{!! $o->addresses->pluck('ftn')->join('<br>') !!}</th>
|
<th class="text-end">{!! $o->addresses->pluck('ftn')->join('<br>') !!}</th>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
@ -41,7 +41,7 @@
|
|||||||
<tbody>
|
<tbody>
|
||||||
@foreach ($user->systems as $o)
|
@foreach ($user->systems as $o)
|
||||||
<tr>
|
<tr>
|
||||||
<th>{{ $o->name }}</th>
|
<th><a href="{{ url('ftn/system/addedit',[$o->id]) }}">{{ $o->name }}</a></th>
|
||||||
<th class="text-end">{!! $o->addresses->pluck('zone.domain.echoareas')->flatten()->pluck('name')->unique()->sort()->join(', ') !!}</th>
|
<th class="text-end">{!! $o->addresses->pluck('zone.domain.echoareas')->flatten()->pluck('name')->unique()->sort()->join(', ') !!}</th>
|
||||||
</tr>
|
</tr>
|
||||||
@endforeach
|
@endforeach
|
||||||
|
@ -1,4 +0,0 @@
|
|||||||
@extends('layouts.app')
|
|
||||||
|
|
||||||
@section('content')
|
|
||||||
@endsection
|
|
Loading…
Reference in New Issue
Block a user