{{-- Pterodactyl - Panel --}} {{-- Copyright (c) 2015 - 2017 Dane Everitt --}} {{-- This software is licensed under the terms of the MIT license. --}} {{-- https://opensource.org/licenses/MIT --}} @extends('layouts.admin') @section('title') Egg → {{ $egg->name }} → Variables @endsection @section('content-header')

{{ $egg->name }}Managing variables for this Egg.

@endsection @section('content')
@foreach($egg->variables as $variable)

{{ $variable->name }}

This variable can be accessed in the startup command by using {{ $variable->env_variable }}.

These rules are defined using standard Laravel Framework validation rules.

@endforeach
@endsection @section('footer-scripts') @parent @endsection