@@ -22,7 +22,7 @@ |
||
22 | 22 | } |
23 | 23 | |
24 | 24 | public function trimStr(string $string) { |
25 | - if(strlen($string) > 200) { |
|
25 | + if (strlen($string) > 200) { |
|
26 | 26 | return substr($string, 0, 200).'...'; |
27 | 27 | } |
28 | 28 | } |
@@ -32,7 +32,7 @@ discard block |
||
32 | 32 | $user = null; |
33 | 33 | $err = null; |
34 | 34 | |
35 | - if($provider == 'google') { |
|
35 | + if ($provider == 'google') { |
|
36 | 36 | $user = Socialite::driver($provider)->stateless()->user(); |
37 | 37 | } else { |
38 | 38 | $user = Socialite::driver($provider)->user(); |
@@ -40,13 +40,13 @@ discard block |
||
40 | 40 | |
41 | 41 | $authUser = $this->findOrCreateUser($user, $provider); |
42 | 42 | |
43 | - $attempt = Auth::guard('web')->attempt(['email' => $authUser->email, 'password' => $authUser->provider_id]); |
|
43 | + $attempt = Auth::guard('web')->attempt([ 'email' => $authUser->email, 'password' => $authUser->provider_id ]); |
|
44 | 44 | |
45 | 45 | $req = new Request([ |
46 | 46 | 'email' => $authUser->email, |
47 | 47 | ]); |
48 | 48 | |
49 | - if($attempt) { |
|
49 | + if ($attempt) { |
|
50 | 50 | $msg = "Selamat Datang ".$authUser->name." !"; |
51 | 51 | return redirect()->intended(route('home'))->with('info', $msg); |
52 | 52 | } |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | private function findOrCreateUser($user, $provider) |
66 | 66 | { |
67 | 67 | $authUser = User::where('email', $user->getEmail())->first(); |
68 | - if($authUser) { |
|
68 | + if ($authUser) { |
|
69 | 69 | return $authUser; |
70 | 70 | } |
71 | 71 | |
@@ -84,7 +84,7 @@ discard block |
||
84 | 84 | private function sendFailedLoginResponse(Request $request) |
85 | 85 | { |
86 | 86 | throw ValidationException::withMessages([ |
87 | - 'email' => [trans('auth.failed')], |
|
87 | + 'email' => [ trans('auth.failed') ], |
|
88 | 88 | ]); |
89 | 89 | |
90 | 90 | } |
@@ -11,9 +11,9 @@ discard block |
||
11 | 11 | { |
12 | 12 | public function __construct() |
13 | 13 | { |
14 | - $this->middleware('auth', ['except' => [ |
|
14 | + $this->middleware('auth', [ 'except' => [ |
|
15 | 15 | 'index', 'show' |
16 | - ]]); |
|
16 | + ] ]); |
|
17 | 17 | } |
18 | 18 | |
19 | 19 | |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | public function create() |
37 | 37 | { |
38 | 38 | $threads = Thread::orderBy('created_at', 'asc')->get(); |
39 | - return view('ask-form')->with('threads', $threads);; |
|
39 | + return view('ask-form')->with('threads', $threads); ; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | /** |
@@ -55,13 +55,13 @@ discard block |
||
55 | 55 | |
56 | 56 | $topic = $this->addTopic($request->input('topic')); |
57 | 57 | |
58 | - if($topic != null) { |
|
58 | + if ($topic != null) { |
|
59 | 59 | $thread = new Thread; |
60 | 60 | $thread->user_id = $this->currentUser()->id; |
61 | 61 | $thread->id_topic = $topic->id; |
62 | 62 | $thread->question = $request->input('question'); |
63 | 63 | |
64 | - if($thread->save()) { |
|
64 | + if ($thread->save()) { |
|
65 | 65 | return redirect(route('user.thread.index'))->with('success', 'Pertanyaan dikirim !'); |
66 | 66 | } |
67 | 67 | return redirect()->back()->with('failed', 'Gagal mengirim pertanyaan, silahkan coba lagi nanti.'); |
@@ -126,7 +126,7 @@ discard block |
||
126 | 126 | private function addTopic(string $topic) { |
127 | 127 | $new = new ThreadTopic; |
128 | 128 | $new->topic_name = $topic; |
129 | - if($new->save()) { |
|
129 | + if ($new->save()) { |
|
130 | 130 | return $new; |
131 | 131 | } |
132 | 132 | return null; |