Skip to content

Commit 8e48d11

Browse files
committed
remove external link property
1 parent ed71738 commit 8e48d11

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

Diff for: content/guides/frameworks/laravel/_index.md

-2
Original file line numberDiff line numberDiff line change
@@ -12,14 +12,12 @@ params:
1212
resource_links:
1313
- title: Laravel
1414
url: https://laravel.com/
15-
external: true
1615
- title: Docker Compose
1716
url: /compose/
1817
- title: Use Compose in production
1918
url: /compose/how-tos/production/
2019
- title: Repository with examples
2120
url: https://github.com/rw4lll/laravel-docker-examples
22-
external: true
2321
---
2422

2523
Laravel is a popular PHP framework that allows developers to build web applications quickly and effectively. Docker Compose simplifies the management of development and production environments by defining essential services, like PHP, a web server, and a database, in a single YAML file. This guide provides a streamlined approach to setting up a robust Laravel environment using Docker Compose, focusing on simplicity and efficiency.

Diff for: layouts/partials/sidebar/guides.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
<p>Resources:</p>
3636
<ul class="ml-4 space-y-2">
3737
{{- range . }}
38-
<li><a href="{{ .url }}" {{- if .external }} target="_blank" {{- end }} class="link">{{ .title }}</a></li>
38+
<li><a href="{{ .url }}" class="link">{{ .title }}</a></li>
3939
{{- end }}
4040
</ul>
4141
</div>

0 commit comments

Comments
 (0)