| namespace App\Models; | |
| use Illuminate\Database\Eloquent\Factories\HasFactory; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Database\Eloquent\Relations\BelongsTo; | |
| class SocialAutomationSetting extends Model | |
| { | |
| use HasFactory; | |
| protected $fillable = [ | |
| 'user_id', | |
| 'approval_mode', | |
| 'daily_limit', | |
| 'platform_daily_limits', | |
| 'max_retries', | |
| 'retry_delay_minutes', | |
| ]; | |
| protected $casts = [ | |
| 'platform_daily_limits' => 'array', | |
| ]; | |
| public function user(): BelongsTo | |
| { | |
| return $this->belongsTo(User::class); | |
| } | |
| } | |