Added FTN list, System View

This commit is contained in:
Deon George
2022-11-25 17:44:03 +07:00
parent 102a972fcb
commit c034ce6cd4
14 changed files with 278 additions and 21 deletions

View File

@@ -613,4 +613,12 @@ class SystemController extends Controller
->with('o',$o)
->with('errors',new ViewErrorBag);
}
public function view(System $o)
{
$o->load(['addresses.echomails.echoarea']);
return view('system.view')
->with('o',$o);
}
}