Remove redundant service controller method and view

This commit is contained in:
2024-08-03 21:45:47 +10:00
parent 2e9f87550c
commit c54b0fdc79
2 changed files with 0 additions and 81 deletions

View File

@@ -4,13 +4,10 @@ namespace App\Http\Controllers;
use Illuminate\Http\RedirectResponse;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use App\Http\Requests\SiteEdit;
use App\Models\{Account,
Charge,
Invoice,
InvoiceItem,
Payment,
PaymentItem,
Service,
@@ -23,13 +20,6 @@ use App\Models\{Account,
*/
class AdminController extends Controller
{
// @todo Move to reseller
public function service(Service $o)
{
return view('theme.backend.adminlte.a.service')
->with('o',$o);
}
/**
* Record payments on an account.
*