HootsuiteHistory.php 292 B

1234567891011121314151617
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class HootsuiteHistory extends Model
  5. {
  6. protected $table = 'hootsuite_history';
  7. protected $guarded = [];
  8. public $casts = [
  9. 'social_ids' => 'array',
  10. 'social_profiles' => 'array'
  11. ];
  12. }