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.
2 parents 2aa9464 + 97a31d7 commit 3a0d294Copy full SHA for 3a0d294
docs/examples.md
@@ -1,3 +1,7 @@
1
+---
2
+render_with_liquid: false
3
4
+
5
*app\Http\Controllers\XeroController.php*
6
7
```php
@@ -45,10 +49,11 @@ class XeroController extends Controller
45
49
46
50
*resources\views\xero.blade.php*
47
51
48
-```
- @extends('_layouts.main')
-
- @section('content')
52
+{% raw %}
53
+```blade
54
+@extends('_layouts.main')
55
56
+@section('content')
57
@if($error)
58
<h1>Your connection to Xero failed</h1>
59
<p>{{ $error }}</p>
@@ -67,9 +72,9 @@ class XeroController extends Controller
67
72
Connect to Xero
68
73
</a>
69
74
@endif
70
- @endsection
75
+@endsection
71
76
```
77
+{% endraw %}
78
*routes/web.php*
79
80
0 commit comments