Fresh code drop

Provide a default related model

PHP

Original CodeSnap example inspired by Laravel News. Source: https://laravel-news.com/eloquent-tips-tricks

PHP
CodeSnap // free canvas

Provide a default related model

<?php

public function author(): BelongsTo
{
    return $this->belongsTo(User::class)
        ->withDefault(['name' => 'Guest Author']);
}

// Further reading: https://laravel-news.com/eloquent-tips-tricks

Turn your code into a post.Five templates are free—no account needed.

Remix this snap