首先请温柔,我是一个初学者,我只是为了练习而编码。
我尝试将实例传递给模型,但我总是收到此错误
Argument 1 passed to Store::__construct() must be an instance of Illuminate\Filesystem\Filesystem, none given
我的模型
<?php
use Illuminate\Filesystem\Filesystem as File;
class Store extends Eloquent
{
public $timestamps = false;
public function __construct(File $file)
{
$this->file = $file;
}
}
有人可以告诉我我做错了什么吗?
谢谢你
编辑
我只是在我的控制器中像这样简单地使用了
public function index()
{
$store = new Store;
return View::make('store', $store);
}