@@ -17,7 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | parent::boot(); |
19 | 19 | |
20 | - static::creating(function ($category) { |
|
20 | + static::creating(function($category) { |
|
21 | 21 | $category->slug = Str::slug($category->name); |
22 | 22 | }); |
23 | 23 | } |
@@ -17,7 +17,7 @@ |
||
17 | 17 | { |
18 | 18 | parent::boot(); |
19 | 19 | |
20 | - static::creating(function ($topic) { |
|
20 | + static::creating(function($topic) { |
|
21 | 21 | $topic->slug = Str::slug($topic->title); |
22 | 22 | }); |
23 | 23 | } |
@@ -50,7 +50,7 @@ |
||
50 | 50 | return (new MailMessage) |
51 | 51 | ->subject('subscribed Successfully!') |
52 | 52 | ->line('You have subscribed successfully!') |
53 | - ->line('Subscription Plan:'.$this->plan->nickname) |
|
53 | + ->line('Subscription Plan:' . $this->plan->nickname) |
|
54 | 54 | ->line('Thank you for using Genealogia!'); |
55 | 55 | } |
56 | 56 |
@@ -45,7 +45,7 @@ |
||
45 | 45 | 'hash' => sha1($notifiable->getEmailForVerification()), |
46 | 46 | ]; |
47 | 47 | |
48 | - $url = env('FRONTEND_URL').'/verify-email?'; |
|
48 | + $url = env('FRONTEND_URL') . '/verify-email?'; |
|
49 | 49 | |
50 | 50 | foreach ($param as $key => $params) { |
51 | 51 | $url .= "{$key}={$params}&"; |
@@ -24,7 +24,7 @@ |
||
24 | 24 | return (new MailMessage) |
25 | 25 | ->subject('Your Reset Password Subject Here') |
26 | 26 | ->line('You are receiving this email because we received a password reset request for your account.') |
27 | - ->action('Reset Password', env('FRONTEND_URL', 'http://localhost:3000').'/password/reset/'.$this->token) |
|
27 | + ->action('Reset Password', env('FRONTEND_URL', 'http://localhost:3000') . '/password/reset/' . $this->token) |
|
28 | 28 | ->line('If you did not request a password reset, no further action is required.'); |
29 | 29 | } |
30 | 30 | } |