We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi, could you please add the feature of profile image uploading for each user?
Thanks
The text was updated successfully, but these errors were encountered:
@cod3rshotout You can extend myth-auth yourself: https://github.com/lonnieezell/myth-auth/blob/develop/docs/extending.md To extend dashboard you need change keys "namespace" and "controller" of $dashboard property in app/Config/Boilerplate.php to:
'namespace' => 'App\Controllers', 'controller' => 'YourController::index',
Then create your controller: app/Controllers/YourController.php
<?php namespace App\Controllers; use agungsugiarto\boilerplate\Controllers\BaseController; class YourController extends BaseController { public function index() { $data = [ 'title' => 'Dashboard', ]; return view('dashboard', $data); } }
Sorry, something went wrong.
No branches or pull requests
Hi, could you please add the feature of profile image uploading for each user?
Thanks
The text was updated successfully, but these errors were encountered: