Details | Letzte Änderung | Log anzeigen | RSS feed
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Database\Eloquent\Relations\BelongsTo;
class Property extends Model
{
protected $connection = "cms";
public function Tool(): BelongsTo
return $this->belongsTo( Tool::class )->orderBy( 'tools.rang' );
}