functionalities that could be helpful to other developers New packages: laravel-newsletter, laravel-medialib, laravel-analytics Opensourcing Blender itself Very positive feedback from the community Beyond the first package
requirements of the project it gets born in Can use latest features: return type hints, null coalescing, anonymous classes PHP 5 is dead (to us) Probably hurts popularity, but nudges community to use latest versions
Eloquent model $newsItem ->setTranslation('name', 'en', 'Name in English') ->setTranslation('name', 'nl', 'Naam in het Nederlands') ->save(); $newsItem->name; // Returns 'Name in English' $newsItem->getTranslation('name', 'nl');