Zum Inhalt springen

Projektanfrage

Sprechen wir ganz unverbindlich über Ihr Projekt.

Oder nutzen Sie unser Kontaktformular
Vielen Dank für Ihre Nachricht. Wir werden uns in Kürze bei Ihnen melden.

Laravel Coding Guidelines

Das Laravel Framework ist für seine elegante Syntax und robusten Funktionen bekannt.

Um eine konsistente Qualität über verschiedene Projekte hinweg zu gewährleisten, ist es wichtig, sich an Coding-Guidelines zu halten, insbesondere wenn man im Team arbeitet.

Diese Coding-Guidelines nutzen die bekannten Best-Practices für Laravel und erweitern sie um unsere internen Standards.

Bitte haben Sie Verständnis dafür, dass wir unsere Coding-Guidelines ausschließlich in englischer Sprache zur Verfügung stellen.

Workflow

Working on a project

  • Clone the project if you haven’t already:

    git clone git@github.com:author/some-repo.git
  • Change directories so you are in the project directory.

  • Create a branch for your feature:

    git checkout -b feature/TN-1337_feature_name

In this case, the ticket number for this feature is TN-1337. If provided, always reference the ticket number in any commit or branch name.

  • After creating the branch, create pull request

  • The Pull Request will merge into develop

  • Name the PR like so: “Draft: TN-1337 New feature X”

  • When the Pull Request is ready for review, remove the “Draft: “-prefix

Commits

  • Commit often and commit small, coherent parts of the code (“atomic commits”).

Commit more often dureing the day and keep commits smaller. The goal should be “atomic commits” that can be reverted easily, without side effects. Do not mix topics in commits.

Provide a commit note that describes the change. That makes it easier to keep track of what is being done.

Codestyle

Use php-cs-fixer or Laravel Pint for code-formatting.

In most of our projects, you can do this conveniently by running

./vendor/bin/pint
// or
./vendor/bin/php-cs-fixer

Laravel Naming Conventions

Naming things is hard, thats why sticking to the rules is very worth it.

Variables

In general, stick to camel-case naming for variables:

$apiKey = config('services.myservice.key');

Use descriptive names for variables:

// Good
$users = User::all();
$user = User::find(1);

// Bad
$u = User::all();
$user = User::all();

Models

Models must be named as singular entities. Example:

// Good
class Product extends Model
{
	//
}

// Bad
class Products extends Model
{
	//
}

Model properties

Model properties must be in snake case and follow the naming scheme of their table column names.

// Good
$model->updated_at

// Bad
$model->updatedAt

Method order in Laravel Models

Controllers

Suffix the Controller Class name with its purpose, example: ThemeSyncController

Rules for .env files

  • Do not commit any secrets in version control, not even in .env.example!

  • Only use env() in config/-Files. Example:

// Good. In config/services.php
[
	'api_key' => env('API_KEY'),
]

// Bad. In app/Http/...
$key = env('API_KEY');

  • No trailing Slashes in URLs.

Route-Files

When defining a route, use a PHP class path to identify a Controller instead of using just a controller name or a class path as string.

Tip: Add a use-statement for the entire Controllers-directory to save space in route definitions.

// Good

use App\Http\Controllers;

Route::get('users', [Controllers\UserController::class, 'index']);

// Bad
Route::get('users', 'UserController@index');

CSS

Custom classes go first in a class-Attribute, e.g:

<i class="my-custom-class mt-20"></i>

String-Concaternation

Always aim to concaternate like this in PHP:

"{$object->attr}_doc.pdf"

Similiar to this in JS/TS:

${object.attr}_doc.pdf

Comments

  • Omit Docblocks if attributes and return types are defined. Otherwise use a docblock.

  • Do not add an @‌author name attribution.

  • Do not add redundant information, like “Constructor of Class” for the __construct method.

CRUD Best Practices

  • Instead of combining CREATE and EDIT to a single component or method, keep actions separated. Instead, build one or more component that share common parts, for example the form fields.

Request Validation

Define the rules of a Request-Validation-Class as an array, don’t use pipe notation. It makes it easier to use custom rules:

Component Design

Stick to the CRUD pattern

When creating components, do not mix functionalities like create and edit in one component. This will result in conditionals like this:

// Bad
if (action == 'create') {
  // create record
}
if (action == 'edit') {
  // edit record
}

This violates the single responsibility principle. Create a component for each action, e.g.: create.vue and edit.vue.

Vue

Nuxt Components / Pages

All components must have a name-Attribute:

export default {
  name: 'DocumentEdit',
}

Working with money values

protected function price(): Attribute
{
	return Attribute::make(
		get: function(int $value) {
			return new Money($value, new Currency( code: 'EUR' ));
		},
	);
}