Compare commits
2 Commits
5fe486b93c
...
058b4ac4b9
Author | SHA1 | Date | |
---|---|---|---|
058b4ac4b9 | |||
b27d983fe6 |
@ -17,8 +17,8 @@ class CommBinkpSend extends Command
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'comm:binkp:send'
|
||||
.'{--N|now : Dont queue}'
|
||||
.'{ftn : FTN to Send to}';
|
||||
.' {--N|now : Dont queue}'
|
||||
.' {ftn : FTN to Send to}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
@ -17,8 +17,8 @@ class CommEMSISend extends Command
|
||||
* @var string
|
||||
*/
|
||||
protected $signature = 'comm:emsi:send'
|
||||
.'{--N|now : Dont queue}'
|
||||
.'{ftn : FTN to Send to}';
|
||||
.' {--N|now : Dont queue}'
|
||||
.' {ftn : FTN to Send to}';
|
||||
|
||||
/**
|
||||
* The console command description.
|
||||
|
@ -70,7 +70,8 @@ class User extends Authenticatable implements MustVerifyEmail
|
||||
|
||||
public function systems()
|
||||
{
|
||||
return $this->belongsToMany(System::class);
|
||||
return $this->belongsToMany(System::class)
|
||||
->orderBy('name');
|
||||
}
|
||||
|
||||
/* GENERAL METHODS */
|
||||
|
@ -1,3 +1,5 @@
|
||||
@use(App\Models\Domain)
|
||||
|
||||
<div id="sidebar-scroller">
|
||||
FTN Networks
|
||||
|
||||
@ -12,7 +14,7 @@
|
||||
@endif
|
||||
@endauth
|
||||
|
||||
@if(($x=\App\Models\Domain::select(['id','name'])
|
||||
@if(($x=Domain::select(['id','name'])
|
||||
->when(((! $user) || (! $user->isAdmin())),fn($query)=>$query->public()->active())
|
||||
->orderBy('name')
|
||||
->get())
|
||||
|
Loading…
x
Reference in New Issue
Block a user