Changeset f457265 for app/Http/Controllers/Dashboard
- Timestamp:
- 02/24/21 21:58:42 (4 years ago)
- Branches:
- master
- Children:
- ff9da8b
- Parents:
- 0c07a90
- Location:
- app/Http/Controllers/Dashboard
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
app/Http/Controllers/Dashboard/IndexController.php
r0c07a90 rf457265 36 36 "allPosts" => Post::count(), 37 37 "currentUserPosts" => Post::where("user_id", auth()->user()->id)->count(), 38 "users" => User::count(),38 "users" => !is_null(auth()->user()->company) ? auth()->user()->company->users->count() : User::count(), 39 39 "total_comments" => Comment::count(), 40 40 "comments" => auth()->user()->comments->count() -
app/Http/Controllers/Dashboard/UsersController.php
r0c07a90 rf457265 5 5 use App\Helpers\Alert; 6 6 use App\Http\Requests\Dashboard\NewUserRequest; 7 use App\Models\Company; 7 8 use App\Models\Role; 8 9 use App\Models\User; … … 47 48 $user->verify_token = $user->generateVerifyToken(); 48 49 49 $user->role_id = $request->userRole; 50 if ($request->has("company_id") || !is_null(auth()->user()->company_id)) { 51 $user->company_id = $request->has("company_id") || auth()->user()->company_id; 52 $user->role_id = 1; 53 } else { 54 $user->role_id = $request->userRole; 55 } 50 56 51 57 $user->save(); 52 58 53 $user ->userProfile()->create([59 $userProfile = [ 54 60 "profile_link" => $user->generateProfileLink($request->name, $request->surname), 55 61 "technoblog_email" => $user->generateTechnoblogEmail($request->name, $request->surname) 56 ]); 62 ]; 63 64 if ($request->has("company_owner")) { 65 $userProfile["is_company_profile"] = true; 66 } 67 68 $user->userProfile()->create($userProfile); 57 69 58 70 $user->notify(new WelcomeUser($user)); 59 71 60 72 Alert::flash("New user added successfully"); 61 62 73 }); 63 74
Note:
See TracChangeset
for help on using the changeset viewer.