Followed the exact instructions on a fresh Statamic install (for testing) and used the default structure, but getting the error Call to a member function title() on null (View: ***/vendor/statamic/cms/resources/views/layout.blade.php)
Details :
PHP : 8.0.12
Laravel Version : 9.42.2
Statamic Version : 3.3.60
Here is the exact content of my collection-groups.php file (if I remove everything from within the return call, no error is thrown) :
/**
* This is where you can define your collection groups.
* It should have this structure:
* [
* 'Group 1 label' => [
* 'collection_handle_1',
* 'collection_handle_2',
* ],
* 'Group 2 label' => [
* 'collection_handle_3',
* 'Custom Label' => 'collection_handle_4',
* ]
* ]
*/
return [
'Group 1 label' => [
'collection_handle_1',
'collection_handle_2',
],
'Group 2 label' => [
'collection_handle_3',
'Custom Label' => 'collection_handle_4',
]
];
Followed the exact instructions on a fresh Statamic install (for testing) and used the default structure, but getting the error
Call to a member function title() on null (View: ***/vendor/statamic/cms/resources/views/layout.blade.php)
Details :
Here is the exact content of my collection-groups.php file (if I remove everything from within the
return
call, no error is thrown) :