@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')

{!! Lang::get('lang.plugins') !!}

@stop @section('breadcrumbs') @stop @section('content')

{!! Lang::get('lang.plugins-list') !!}

@if (count($errors) > 0)
{!! Lang::get('lang.alert') !!}!
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif @if(Session::has('success'))
{!!Session::get('success')!!}
@endif @if(Session::has('fails'))
{!! Lang::get('lang.alert') !!}! {!!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