mirror of
https://github.com/ershisan99/coolify.git
synced 2026-01-22 12:34:26 +00:00
17 lines
459 B
PHP
17 lines
459 B
PHP
<div>
|
|
<h1>Configuration</h1>
|
|
<h3>Applications</h3>
|
|
@foreach ($service->applications as $application)
|
|
<p>{{ $application->name }}</p>
|
|
@endforeach
|
|
<h3>Databases</h3>
|
|
@foreach ($service->databases as $database)
|
|
<p>{{ $database->name }}</p>
|
|
@endforeach
|
|
<h3>Variables</h3>
|
|
@foreach ($service->environment_variables as $variable)
|
|
<p>{{ $variable->key }}={{ $variable->value }}</p>
|
|
@endforeach
|
|
|
|
</div>
|