We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c2c410 commit cb275c5Copy full SHA for cb275c5
README.md
@@ -16,4 +16,19 @@ Provides logging and email notifications for Laravel console commands.
16
composer require illuminated/console-logger
17
```
18
19
-2. To be continued...
+2. Use `Illuminated\Console\Loggable` trait in your console command class:
20
+ ```php
21
+ namespace App\Console\Commands;
22
+
23
+ use Illuminate\Console\Command;
24
+ use Illuminated\Console\Loggable;
25
26
+ class Foo extends Command
27
+ {
28
+ use Loggable;
29
30
+ // ...
31
+ }
32
+ ```
33
34
+3. Now your command is... To be continued...
0 commit comments