- Java 双重比较
- java - 比较器与 Apache BeanComparator
- Objective-C 完成 block 导致额外的方法调用?
- database - RESTful URI 是否应该公开数据库主键?
型号
<?php
class CommentComentario extends Illuminate\Database\Eloquent\Model {
protected $table = 'comment_comentario';
public function comercio() {
return $this->belongsTo('CommentComercio', 'comercio_id', 'id');
}
}
请求
$comercios = CommentComercio::all()->orderBy('created_at');
Error is produced in illuminate\support\Traits\Macroable.php line 81
安装 Composer
{
"require": {
"slim/slim": "2.*",
"slim/extras": "*",
"illuminate/console": "*",
"illuminate/database": "*",
"illuminate/events": "*",
"illuminate/filesystem": "*",
"facebook/php-sdk-v4": "*",
"monolog/monolog": "1.*",
"twig/twig": "*",
"phpmailer/phpmailer": "~5.2"
},
"autoload": {
"classmap": [ "models" ]
}
}
最佳答案
改变这一行:
$comercios = CommentComercio::all()->orderBy('created_at');
对此:
$comercios = CommentComercio::orderBy('created_at')->get();
这将得到“所有”你的元素,但订单已应用到它。
关于php - BadMethodCallException 方法 orderBy 不存在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34318782/
这是我的部分代码: // ... code ... $action = self::defineAction( $request->getPath() ); try { $response =
我正在尝试从 Laravel DB Facade 实现 insertOrIgnore 方法,这是文档+解释片段的链接: https://laravel.com/docs/5.8/queries#ins
型号 belongsTo('CommentComercio', 'comercio_id', 'id'); } } 请求 $comercios = CommentComercio::all()
当我输入“php artisan migrate”时,出现以下错误: BadMethodCallException : Method Illuminate\Database\Schema\Bluepr
当尝试使用模型对象 User 从数据库中提取一些值时,出现以下错误:BadMethodCallException Method [find] does not exist 这是我的文件:模型用户 be
我想开始一个新的 laravel 项目,并想使用 Artisan 制作一个名为 ProductController 的 Controller ,但它以错误告终 “BadMethodCallExcept
我已经构建了一个 laravel 应用程序,我正在检查 Controller 中的时间重叠问题。 我使用的逻辑是在我的 Controller 的查询中,首先我会检查输入的 day_id 是否与具有该
我已经安装了 Laravel 5.4 并使用了 php artisan make:auth。一切都很好,我设置了数据库并迁移了所有内容。我还测试了登录和注册,一切正常。 之后,我设法设置了我的其他 C
我在 Laravel 4.3 的本地环境中使用 Redis 作为电子邮件队列。我最近升级到 Laravel 5.4,当我现在尝试使用 redis 队列(默认)时: php artisan queue:
当我尝试使用 orderBy() Eloquent 方法对输出数据进行排序时,我看到以下消息:BadMethodCallException: Method Illuminate\Database\El
我正在尝试测试我的类别类(class)。我正在使用 Mockery::mock() 方法,带有 'overload:' 前缀和 makePartial() 方法。 运行测试时出现此错误: Mocker
我正在开发一个页面来创建、更新、删除和查看更新事件时出错的事件。有一个事件表和一个 event_collection 表。在该 event_collection 表中,有一个 event_id,它是一
我正在尝试使用 Laravel 5.2 设置 PHPunit。我按照文档进行了简单的单元测试,但是每个测试都会抛出相同的错误: 1) CreateAccountTest::testCreateUser
我正在与@Jeffrey_way 系列的 Laracasts 一起工作 Many to Many Relations (With Tags) 下面是我使用 Laravel Tinker 在 CMD 中
在laravel-10项目中对EXCEL文件运行“Composer Required maatWebSite/EXCEL”,但显示“Package phpoffice/phpexel is reast
我是一名优秀的程序员,十分优秀!