File: D:/HostingSpaces/SBogers10/signmania.komma.pro/app/Komma/Clients/Models/Client.php
<?php
namespace Komma\Clients\Models;
class Client extends \Komma\Kms\Clients\Models\Client
{
public $kmsClass = 'Komma\\Kms\\Clients\\Models\\Client';
/**
* Get the images from the current client
*
* @return Collection
*/
public function images()
{
/**
*
* On the Image model is an MorphTo relation
* By using a hasMany relation:
* where the imageble_type is filled in with the KmsClass
* And the imageble_id is set as the foreign_id,
* we can collect the images of the given model directly.
*
*/
return $this->hasMany('Komma\Kms\Images\Models\Image', 'imageble_id')
->where('imageble_type', '=', $this->kmsClass)
->orderBy('sort_order');
}
}