Some checks failed
Push image to registry / build-image (push) Failing after 6m44s
20 lines
332 B
PHP
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');
|
|
}
|
|
}
|