@extends('layouts/master') @section('title') API Key Management - Technic Solder @stop @section('content')

API Key Management


API Key List

This is the list of API keys that have access to Solder.

@if (Session::has('success'))
{{ Session::get('success') }}
@endif
@foreach ($keys as $key) @endforeach
# Name API Key Actions
{{ $key->id }} {{ $key->name }} {{ $key->api_key }} {!! Html::link('key/delete/'.$key->id, 'Delete', ['class' => 'btn btn-danger btn-xs']) !!}
@endsection @section('bottom') @endsection