修改了Laravel里面的.env文件之后报这个错误,找半天,找到罪魁祸首了,错误信息: Fatal error: Uncaught ReflectionException: Class config does not exist in D:\phpStudy\WWW\BCCKidV1.0\vendor\laravel\framework\src\Illuminate\Container\Container.php:752 产生的原因是我的.env里面的参数设置有空格...有空格的参数一定要用双…
The controller is existing, and the method 'test' exist on 'App\Http\Controllers\Admin\IndexController'. But Laravel show me that there is no method on the controller, I don't know why. I have askd for help on the internet, but no one can help me. Th…
When you're using get() you get a collection. In this case you need to iterate over it to get properties: @foreach ($collection as $object) {{ $object->title }}@endforeachOr you could just get one of objects by it's index: {{ $collection[0]->title }…
In this article we will see how to use MongoDB with Laravel (PHP framework). So first we need to install MongoDB and Laravel. Laravel and MongoDB installation: We will install Laravel and MongoDB one by one and I assume that you have PHP already inst…