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 b0b374b commit b6c7807Copy full SHA for b6c7807
database/migrations/add_soft_deletes_to_messages_table.php.stub
src/Message.php
@@ -8,7 +8,6 @@
8
use Illuminate\Database\Eloquent\Factories\HasFactory;
9
use Illuminate\Database\Eloquent\Model;
10
use Illuminate\Database\Eloquent\Relations\BelongsTo;
11
-use Illuminate\Database\Eloquent\SoftDeletes;
12
use Illuminate\Foundation\Auth\User;
13
use Illuminate\Support\HtmlString;
14
use League\CommonMark\Environment\Environment;
@@ -27,13 +26,12 @@
27
26
* @property ?Carbon $read_at
28
* @property ?ArrayObject $metadata
29
* @property Conversation $conversation
30
- * @property ?Carbon $deleted_at
31
* @property ?string $origin
+ * @property ?Carbon $deleted_at
32
*/
33
class Message extends Model
34
{
35
use HasFactory;
36
- use SoftDeletes;
37
38
protected $guarded = [];
39
0 commit comments