My Ardent model has a has_one relationship like this
public static $relationsData = array(
'organization' => array(self::HAS_ONE, 'Organization', 'foreignKey' => 'party_id'),
);
Now, my Laravel Administrator package's model config file have column configuration like this
'columns' => array(
'id',
'organization' => array(
'title' => "Organization",
'relationship' => 'organization', //this is the name of the Eloquent relationship method!
'select' => "(:table).organization_name",
),
'address'
),
Now, it is throwing an error like this
Maximum function nesting level of '100' reached, aborting! Open: C:\xampp\htdocs\hrms\vendor\laravel\framework\src\Illuminate\Support\Str.php
* Convert a value to studly caps case.
*
* @param string $value
* @return string
*/
public static function studly($value)
{
$value = ucwords(str_replace(array('-', '_'), ' ', $value));
return str_replace(' ', '', $value);
(I answered this here and now I'm just whoring for reputation!)
Using the solution given by @bobiasg in issue #418, I was able to solve the error. This is in Administrator/DataTable/Columns/Relationships/BelongsTo.php:71