PHP Classes

File: resources/views/tabs/settings.blade.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Polr Admin Dashboard   resources/views/tabs/settings.blade.php   Download  
File: resources/views/tabs/settings.blade.php
Role: Auxiliary script
Content type: text/plain
Description: Auxiliary script
Class: Polr Admin Dashboard
Another admin dashboard for the Polr URL shortener
Author: By
Last change: Fixed HTML code.
Date: 6 years ago
Size: 992 bytes
 

Contents

Class file image Download
<h3>Polr endpoints</h3>

                <div class="">
                    <h4>Change endpoint</h4>
                    <form role="form">
                        <div class="row">
                            <div class="col-md-9">
                                <select class="form-control" name="endpoint" id="select-endpoint">
                                @foreach( $endpoints as $id => $name )
                                    <option value="{{ $id }}"{{ ($id == $endpoint->id) ?
                                        ' selected' : '' }}>{{ $name }}</option>
                                @endforeach
                                </select>
                            </div>
                            <div class="col-md-3">
                                <button type="button" class="btn btn-info" id="btn-change-endpoint">Save</button>
                            </div>
                        </div>
                    </form>
                </div>