Added in email hosting, and other misc cosmetic fixes
This commit is contained in:
@@ -255,6 +255,20 @@ class ServiceController extends Controller
|
||||
->with('o',$o);
|
||||
}
|
||||
|
||||
public function email_list(): View
|
||||
{
|
||||
// @todo Need to add the with path when calculating next_billed and price
|
||||
$o = Service\Email::serviceActive()
|
||||
->serviceUserAuthorised(Auth::user())
|
||||
->select('service_emails.*')
|
||||
->join('ab_service',['ab_service.id'=>'service_emails.service_id'])
|
||||
->with(['service.account','service.product.type.supplied.supplier_detail.supplier','tld'])
|
||||
->get();
|
||||
|
||||
return view('r.service.email.list')
|
||||
->with('o',$o);
|
||||
}
|
||||
|
||||
/**
|
||||
* Update details about a service
|
||||
*
|
||||
|
Reference in New Issue
Block a user