U hoeft de arraygegevens niet zelf naar een JSON-string te converteren, gebruik de Laravel $casts-parameter op uw model:https://laravel.com/docs/5.2/eloquent-mutators#attribute-casting
Je zou zoiets als dit moeten doen in je Div-model:
protected $casts = [
'divisions' => 'array',
];