Freelance Laravel Developer

I am Jeffrey van Rossum, a freelance PHP developer with years of Laravel experience. I've worked on a varity of Laravel apps, from simple apps to complex API's. And the site you're on right now, is made with Laravel too.

Why Laravel?

Laravel is a very popular PHP framwork developed by Taylor Otwell. The framework allows you to work quickly and is suitable for both simple and complex applications. The framework is also ideal for creating API's.

I have worked with other frameworks in the past (Symfony, CodeIgniter), but Laravel is by far the most pleasant to work with. The framework also makes the application of Test Driven Development very accessible. I like to apply this method, because by thoroughly testing your code you can avoid unnecessary errors.

Hire me as Freelance Laravel Developer

Looking for an experienced Laravel developer? The following might appeal to you:

  • Years of experience of working with Laravel and PHP
  • Experience with front-end frameworks like Tailwind CSS, Alpine.js and Vue.js
  • Working with version control (GIT)
  • Fluent in Dutch and English
  • Experience with working in a team as well as independently
  • Available on an hourly, project or contract basis
  • Preferably works remotely, but working (partly) on location is an option

If you want to hire me or want additional information, feel free to send an email to [email protected].

<?php

namespace Jeffreyvr\SimpleMedia;

use Illuminate\Database\Eloquent\Relations\BelongsToMany;

trait HasMedia
{
    public function mediaByGroup($group): BelongsToMany
    {
        return $this->media()->where('media.group', $group);
    }

    // ...
}