実現したいこと
「Shares」テーブルの「text」一覧を画面に表示させたい。
検索機能を実装しようとまずはDBの情報が表示出来るようにとコードを入力しましたが、
「Symfony \ Component \ Debug \ Exception \ FatalThrowableError (E_ERROR) Class 'App\Http\Controllers\Shares' not found」 のエラーが表示されました。
参考サイト
どう対処を行えば良いのかアドバイスをいただけないでしょうか。
コントローラー
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Validator; use Illuminate\Support\Facades\DB; use App\Http\Controllers\Controller; use App\Models\Share; class SharesController extends Controller { public function search() { $shares = Shares::all(); return view('shares.search')->with('shares', $shares); } }
モデル
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class Share extends Model { use SoftDeletes; /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'text' ]; protected $table = 'shares'; public $timestamps = false; }
web.php
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | contains the "web" middleware group. Now create something great! | */ Route::get('/', function () { return view('welcome'); }); Auth::routes(); Route::get('/home', 'HomeController@index')->name('home'); Route::get('/search', 'SharesController@search');
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/02 08:28