Category: Laravel, Laravel
Did you hear about https://uselauncher.com? It's an easy-to-use deployment tool to deploy your Laravel apps containerized with Docker.
Start launching your sites in just minutes using our https://uselauncher.com.
use Illuminate\Database\Eloquent\Relations\Relation; Relation::enforceMorphMap([ 'post' => Post::class, 'video' => Video::class, ]); v8.60.0 Added the valueOfFail() Eloquent builder method (https://github.com/laravel/framework/pull/38707)
// Before: $votes = User::where('name', 'John')->firstOrFail('votes')->votes; // Now: $votes = User::where('name', 'John')->valueOrFail('votes'); v8.63.0 Added whereBelongsTo() Eloquent builder method (https://github.com/laravel/framework/pull/38927)