Subversion-Projekte lars-tiefland.webanos.faltradxxs.de

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
24 lars 1
<?php
2
 
3
    namespace App\Models;
4
 
5
    use Illuminate\Database\Eloquent\Model;
6
    use Illuminate\Database\Eloquent\Relations\BelongsTo;
7
 
8
    class Property extends Model
9
    {
10
        protected $connection = "cms";
11
 
12
        public function Tool(): BelongsTo
13
        {
14
            return $this->belongsTo( Tool::class )->orderBy( 'tools.rang' );
15
        }
16
 
17
    }