| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 18 | public function boot() |
||
| 19 | { |
||
| 20 | Blade::directive('time', function ($expression) { |
||
| 21 | return "<?php echo strftime('%H:%M', date_create($expression)->getTimestamp()); ?>"; |
||
| 22 | }); |
||
| 23 | Blade::directive('datetime', function ($expression) { |
||
| 24 | return "<?php echo strftime('%A, %d.%m.%Y', date_create($expression)->getTimestamp()); ?>"; |
||
| 25 | }); |
||
| 51 |