Ich versuche, einige Informationen auf meiner Einweg-Tabelle zu seeden, aber jedes Mal, wenn ich php artisan db:seed ausführe, tritt ein Fehler auf
{"error":{"type":"Symfony\\Component\\Debug\\Exception\\FatalErrorException","me
ssage":"Class 'Oneway' not found","file":"C:\\wamp\\www\\airlines\\app\\database
\\seeds\\OnewayTableSeeder.php","line":8}}
Ich habe versucht, composer dump-autoload auszuführen, aber es passiert immer noch nichts. Was scheint hier das Problem zu sein? Ist es bei meinem Composer oder meinen Codes.
OnewayTableSeeder.php
delete();
Oneway::create(
array(
'destination-from'=>'Bacolod',
'destination-to'=>'Cebu',
'departure'=> \Carbon\Carbon::createFromDate(2014,10,01)->toDateTimeString(),
));
Oneway::create(
array(
'destination-from'=>'Tawi-Tawi',
'destination-to'=>'Cebu',
'departure'=> \Carbon\Carbon::createFromDate(2014,10,03)->toDateTimeString(),
));
Oneway::create(
array(
'destination-from'=>'Cebu',
'destination-to'=>'Dipolog',
'departure'=> \Carbon\Carbon::createFromDate(2014,10,16)->toDateTimeString(),
));
}
}
DatabaseSeeder.php
call('UserTableSeeder');
$this->call('OnewayTableSeeder');
}
}