first upload all files
This commit is contained in:
41
Modules/User/Admin/ProfileTabs.php
Normal file
41
Modules/User/Admin/ProfileTabs.php
Normal file
@@ -0,0 +1,41 @@
|
||||
<?php
|
||||
|
||||
namespace Modules\User\Admin;
|
||||
|
||||
use Modules\Admin\Ui\Tab;
|
||||
use Modules\Admin\Ui\Tabs;
|
||||
|
||||
class ProfileTabs extends Tabs
|
||||
{
|
||||
/**
|
||||
* Make new tabs with groups.
|
||||
*
|
||||
* @return void
|
||||
*/
|
||||
public function make()
|
||||
{
|
||||
$this->group('profile_information', trans('user::users.tabs.group.profile_information'))
|
||||
->active()
|
||||
->add($this->account())
|
||||
->add($this->newPassword());
|
||||
}
|
||||
|
||||
private function account()
|
||||
{
|
||||
return tap(new Tab('account', trans('user::users.tabs.account')), function (Tab $tab) {
|
||||
$tab->active();
|
||||
$tab->weight(5);
|
||||
$tab->fields(['first_name', 'last_name', 'email']);
|
||||
$tab->view('user::admin.profile.tabs.account');
|
||||
});
|
||||
}
|
||||
|
||||
private function newPassword()
|
||||
{
|
||||
return tap(new Tab('newPassword', trans('user::users.tabs.new_password')), function (Tab $tab) {
|
||||
$tab->weight(10);
|
||||
$tab->fields(['password', 'password_confirmation']);
|
||||
$tab->view('user::admin.profile.tabs.new_password');
|
||||
});
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user