We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0000c99 commit 5ce9c67Copy full SHA for 5ce9c67
docs/1-essentials/01-routing.md
@@ -175,9 +175,9 @@ final class Aircraft implements Bindable
175
{
176
use IsDatabaseModel;
177
178
- public function resolve(string $input): self
+ public static function resolve(string $input): self
179
180
- return self::find(id: $input);
+ return self::findById(id: $input);
181
}
182
183
```
@@ -193,9 +193,9 @@ final class Aircraft implements Bindable
193
#[IsBindingValue]
194
public string $callSign;
195
196
197
198
199
200
201
0 commit comments