Skip to content

Commit ed12f42

Browse files
committed
Fix blade tags in code blocks
1 parent a4c5112 commit ed12f42

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

resources/views/docs/1/the-basics/system.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ the platform on which your app is running.
1818
While some features are platform-specific, NativePHP gracefully handles this for you so that you don't have to think
1919
about whether something is Linux-, Mac-, or Windows-only.
2020

21-
## Prompt for TouchID
21+
## TouchID
2222

2323
For Mac systems that support TouchID, you can use TouchID to protect and unlock various parts of your application:
2424

@@ -37,9 +37,9 @@ You can list all available printers:
3737
```php
3838
@use(Native\Laravel\Facades\System)
3939

40-
@foreach(System::printers() as $printer)
41-
{{ $printer->displayName }}
42-
@foreach
40+
@@foreach(System::printers() as $printer)
41+
@{{ $printer->displayName }}
42+
@@foreach
4343
```
4444

4545
Each item in the printers array is a `\Native\Laravel\DataObjects\Printer` which contains various device details and

0 commit comments

Comments
 (0)