| 123456789101112 | 
							- <?php
 
- namespace App\Models;
 
- use Illuminate\Database\Eloquent\Model;
 
- class Comment extends Model
 
- {
 
-   protected $casts = [ 'user_id' => 'integer', 'post_id' => 'integer', 'text' => 'string' ];
 
-   public function user() { return $this->hasMany(User::class, 'id', 'user_id'); }
 
-   public function post() { return $this->hasMany(Post::class, 'id', 'post_id'); }
 
- }
 
 
  |