@extends('su-admin.layout.master') @section('content') @php if(!isset($_GET['tab'])){ $tab = ''; }else{ $tab = $_GET['tab']; } @endphp
@if (session()->has('message')) @endif

Funzioni

Cache

Applicazione

Temi

Composer e Npm

{!! Form::open(['url' => Request::url(), 'method' => 'post', 'class' => 'form-horizontal']) !!}

Utilizza il comando "which {componente}" nel terminale per conoscere la path. Es: which php
Ricordarsi di attivare shell_exec nella gestione del multi-php.

{!! Form::label('path_php', 'Php path', ['class' => 'form-label'] ) !!}
{!! Form::text('path_php', get_setting('tools', 'path_php', 'functions'), ['class' => 'form-control']) !!}
{!! Form::label('path_npm', 'Npm path', ['class' => 'form-label'] ) !!}
{!! Form::text('path_npm', get_setting('tools', 'path_npm', 'functions'), ['class' => 'form-control']) !!}
{!! Form::label('path_composer', 'Composer path', ['class' => 'form-label'] ) !!}
{!! Form::text('path_composer', get_setting('tools', 'path_composer', 'functions'), ['class' => 'form-control']) !!}
{!! Form::hidden('id', 'settings', ['class' => 'form-section-id'] ) !!} {!! Form::submit('Salva', ['class' => 'btn btn-primary btn-fw'] ) !!}
{!! Form::close() !!}
@endsection