Skip to main content

Laravel

Laravel Validations

·6 mins
Validations are great for ensuring that the data you receive is in the format you expect, while also handling a lot of edge cases (like ids that are not in the database).

The Laravel Queue

·7 mins
After debugging problems with the Serialisation of Classes, I learned I know way too little about Laravel Queues.

Useful and Useless Relationship Definitions

·9 mins
Programmer giving Relationship Advice - A summary about Laravel / Eloquent relationships including some hints, advanced techniques to use and misuse relations Relationships are great #Relational Databases like mySql or postgres tend to have that thing called relations.

Model Specific Query Builder - an Alternative to Scopes

·6 mins
Scopes are nice, but by extending the Eloquent Builder for a Model enables you to add custom, model-specific methods that are often used or should have a central definition Scopes are great, but … #Local scopes allow you to define common sets of query constraints that you may easily re-use throughout your application; read more in the Laravel Docs.

Demo Environments and what I learned from implementing one

·6 mins
I got the task to implement a Demo environment, learned something about Laravel Factories and the usage of an environment to give possible customers / investors a taste of your product and the developers to find response time / query problems and UX bugs A “Demo” Feature Request #This card was proposed in a sprint planning and sparked a discussion around multiple problems and ideas.