File "RouteAttributesCommand.php"

Full Path: /var/www/html/back/vendor/spatie/laravel-route-attributes/src/Commands/RouteAttributesCommand.php
File size: 304 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace Spatie\RouteAttributes\Commands;

use Illuminate\Console\Command;

class RouteAttributesCommand extends Command
{
    public $signature = 'laravel-route-attributes';

    public $description = 'My command';

    public function handle()
    {
        $this->comment('All done');
    }
}