Minor bug fixes from live site
This commit is contained in:
parent
8fb888a395
commit
fd110f5c6f
@ -34,11 +34,11 @@ class BroadbandTraffic extends Command
|
|||||||
if ($this->option('supplier')) {
|
if ($this->option('supplier')) {
|
||||||
$o = Supplier::where('name','like',$this->option('supplier'))->singleOrFail();
|
$o = Supplier::where('name','like',$this->option('supplier'))->singleOrFail();
|
||||||
|
|
||||||
Job::dispatch($o);
|
Job::dispatchSync($o);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
foreach (Supplier::active()->get() as $o)
|
foreach (Supplier::active()->get() as $o)
|
||||||
Job::dispatch($o);
|
Job::dispatchSync($o);
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -4,7 +4,7 @@ Please order the following...
|
|||||||
@component('mail::table')
|
@component('mail::table')
|
||||||
| Service | Details |
|
| Service | Details |
|
||||||
| :---------- | :---------------- |
|
| :---------- | :---------------- |
|
||||||
| Logged User | {{ Auth::user()->id }} |
|
| Logged User | {{ Auth::user() ? Auth::user()->id : '-' }} |
|
||||||
| Account | {{ $service->account->name }} |
|
| Account | {{ $service->account->name }} |
|
||||||
| Service ID | {{ $service->sid }} |
|
| Service ID | {{ $service->sid }} |
|
||||||
| Product | {{ $service->product->name }} |
|
| Product | {{ $service->product->name }} |
|
||||||
|
@ -4,7 +4,7 @@ Please change the following...
|
|||||||
@component('mail::table')
|
@component('mail::table')
|
||||||
| Service | Details |
|
| Service | Details |
|
||||||
| :---------- | :---------------- |
|
| :---------- | :---------------- |
|
||||||
| Logged User | {{ Auth::user()->id }}
|
| Logged User | {{ Auth::user() ? Auth::user()->id : '-' }}
|
||||||
| Account | {{ $service->account->name }} |
|
| Account | {{ $service->account->name }} |
|
||||||
| Service ID | {{ $service->sid }} |
|
| Service ID | {{ $service->sid }} |
|
||||||
| Product | {{ $service->product->name }} |
|
| Product | {{ $service->product->name }} |
|
||||||
|
Loading…
Reference in New Issue
Block a user