Instagram repost job
Some checks failed
Push image to registry / build-image (push) Failing after 6m44s

This commit is contained in:
2025-06-03 19:10:34 +02:00
parent 25a9063169
commit 7f50822692
12 changed files with 907 additions and 4 deletions

View File

@ -0,0 +1,19 @@
<?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');
}
}