@extends('adminlte::page') @section('title','Kategorije') @section('content_header')

Kategorije

{{ Lang::get('Dodaj novu kategoriju') }}
@stop @section('content') @foreach($categories as $item) @endforeach
{!! Lang::get('common.id') !!} {!! Lang::get('common.name') !!} {!! Lang::get('common.parent') !!} {!! Lang::get('common.status') !!} {!! Lang::get('common.actions') !!}
{!! $item->id !!} {!! $item->name !!} {!! ($item->getMainCategory != null) ? $item->getMainCategory->name : '' !!} {!! $item->getStatusName->name !!}
{{ $categories->links() }} @endsection @section('js') @section('plugins.Datatables', true) @endsection