@extends('themes.default1.admin.layout.admin') @section('Plugins') class="nav-link active" @stop @section('HeadInclude') @stop @section('PageHeader')

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

@stop @section('breadcrumbs') @stop @section('content')
{!! Lang::get('lang.plugin-info') !!}
{!!Lang::get('lang.click-here')!!} {!!Lang::get('lang.plugin-info-pro')!!}
@if (count($errors) > 0)
{!! Lang::get('lang.alert') !!}!
@endif @if(Session::has('success'))
{!!Session::get('success')!!}
@endif @if(Session::has('fails'))
{!! Lang::get('lang.alert') !!}! {!!Session::get('fails')!!}
@endif

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

{!! Datatable::table() ->addColumn( trans('lang.name'), trans('lang.description'), // Translate the 'Description' column heading trans('lang.author'), // Translate the 'Author' column heading trans('lang.website'), // Translate the 'Website' column heading trans('lang.version') // Translate the 'Version' column heading ) ->setUrl('getplugin') // this is the route where data will be retrieved ->render() !!}
@stop