@extends('themes.default1.admin.layout.admin') @section('Settings') active @stop @section('settings-bar') active @stop @section('languages') class="active" @stop @section('HeadInclude') @stop @section('PageHeader')

{{ Lang::get('lang.settings') }}

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

{{ Lang::get('lang.language-settings') }}

{{Lang::get('lang.download')}} {{Lang::get('lang.add')}}
@if(Session::has('success'))
{{Session::get('success')}} @if(Session::has('link')){{Lang::get('lang.enable_lang')}} @endif
@endif @if(Session::has('fails'))
{{Session::get('fails')}}
@endif {!! Datatable::table() ->addColumn(Lang::get('lang.language'),Lang::get('lang.iso-code'),Lang::get('lang.status'),Lang::get('lang.Action')) // these are the column headings to be shown ->setUrl(route('getAllLanguages')) // this is the route where data will be retrieved ->render() !!}
@stop