@extends('themes.default1.admin.layout.admin') @section('Plugins') active @stop @section('settings-bar') active @stop @section('plugin') class="active" @stop @section('HeadInclude') @stop @section('PageHeader') @stop @section('breadcrumbs') @stop @section('content')

Plugins

@if (count($errors) > 0)
Whoops! There were some problems with your input.

    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
Success! {!!Session::get('success')!!}
@endif @if(Session::has('fails'))
Alert! Failed. {!!Session::get('fails')!!}
@endif
{!! Datatable::table() ->addColumn('Name','Description','Author','Website','Version') // these are the column headings to be shown ->setUrl('getplugin') // this is the route where data will be retrieved ->render() !!}
@stop