EDIT: Figured out where I was going wrong and placed an answer at the end
I\'m trying to create a Laravel Command, I can see it\'s changed considerably from \"tasks\" in
In newer Laravel versions there isn't an import command. You just have to do the following two thing:
import
Register your command in app/start/artisan.php:
app/start/artisan.php
Artisan::add(new Import);
Run the command in Artisan:
php artisan command:name Import