diff --git a/resources/views/publishable/index.blade.php b/resources/views/publishable/index.blade.php index 4b31a89..2380363 100644 --- a/resources/views/publishable/index.blade.php +++ b/resources/views/publishable/index.blade.php @@ -65,17 +65,15 @@ @foreach($posts as $post)
- {{-- --}} - {{-- --}} - {{-- --}} - {{-- --}}
- {{ $post->tag }} {{ $post->title }} -

- By {{ $author->name }}, Published - on {{ $post->publish_date }} + + + + +

+ By {{ $author->name }}, published {{ date('d-m-Y', strtotime($post->publish_date)) }}

{!! $post->body !!} Continue Reading -

Topics

-
- @foreach($tags as $tag) - {{$tag->name}} -
- @endforeach -
- Follow @ {{$author->slug}} + Follow @ {{$author->name}}
diff --git a/src/Console/ControllerCommand.php b/src/Console/ControllerCommand.php index 59fb276..6c03ce6 100644 --- a/src/Console/ControllerCommand.php +++ b/src/Console/ControllerCommand.php @@ -11,7 +11,7 @@ class ControllerCommand extends GeneratorCommand * * @var string */ - protected $name = 'wink:controller'; + protected $name = 'rapid:controller'; /** * The name and signature of the console command. diff --git a/src/Console/RouteCommand.php b/src/Console/RouteCommand.php index 341b327..d9a61ce 100644 --- a/src/Console/RouteCommand.php +++ b/src/Console/RouteCommand.php @@ -11,7 +11,7 @@ class RouteCommand extends Command * * @var string */ - protected $name = 'wink:route'; + protected $name = 'rapid:route'; /** * The name and signature of the console command. diff --git a/src/Console/ViewCommand.php b/src/Console/ViewCommand.php index b275efd..179e57b 100644 --- a/src/Console/ViewCommand.php +++ b/src/Console/ViewCommand.php @@ -11,7 +11,7 @@ class ViewCommand extends Command * * @var string */ - protected $name = 'wink:view'; + protected $name = 'rapid:view'; /** * The name and signature of the console command.