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 b5d3e25 commit e6c2b1bCopy full SHA for e6c2b1b
app/Models/Membership.php
@@ -0,0 +1,15 @@
1
+<?php
2
+
3
+namespace App\Models;
4
5
+use Laravel\Jetstream\Membership as JetstreamMembership;
6
7
+class Membership extends JetstreamMembership
8
+{
9
+ /**
10
+ * Indicates if the IDs are auto-incrementing.
11
+ *
12
+ * @var bool
13
+ */
14
+ public $incrementing = true;
15
+}
app/Models/Role.php
@@ -0,0 +1,12 @@
+declare(strict_types=1);
+use Spatie\Permission\Models\Role as SpatieRole;
+class Role extends SpatieRole
+ //
0 commit comments