Skip to content

Commit e0d677d

Browse files
committed
fix typo
1 parent 165d299 commit e0d677d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Middleware/CheckSubscribed.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function handle($request, Closure $next, $subscribed = false)
2222
} else if ($user->subscription() && $user->subscription()->cancelled()) {
2323
return response()->json([
2424
'cancelled' => true,
25-
'message' => "Your Subscriptin will end on {$user->subscription()->ends_at->format('D d M Y')}"
25+
'message' => "Your Subscription will end on {$user->subscription()->ends_at->format('D d M Y')}"
2626
], 200);
2727
} else {
2828
return response()->json([

0 commit comments

Comments
 (0)