Files
DatBrowser/app/Models/InstagramAccount.php
Matthias Guillitte 7f50822692
Some checks failed
Push image to registry / build-image (push) Failing after 6m44s
Instagram repost job
2025-06-03 19:10:34 +02:00

20 lines
332 B
PHP

<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
class InstagramAccount extends Model
{
protected $table = 'instagram_repost_accounts';
protected $fillable = [
'username',
];
public function reposts()
{
return $this->hasMany(InstagramRepost::class, 'account_id');
}
}