Fresh code drop

Keep model configuration explicit

PHP

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

PHP
CodeSnap // free canvas

Keep model configuration explicit

<?php

protected $fillable = ['name', 'email'];
protected $hidden = ['password'];

protected function casts(): array
{
    return ['email_verified_at' => 'datetime'];
}

// 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