@extends('adminlte::page') @section('title_postfix', ' - Jezik') @section('content')

Dodaj jezik

{!! BootForm::vertical([ 'model' => $formModel, 'store' => $route.'.store', 'autocomplete' => 'off' ]) !!}
{!! BootForm::text('name', 'Naziv', null, array('placeholder' => 'Naziv')) !!} {!! BootForm::text('slug', 'Slug', null, array('placeholder' => 'Slug')) !!}
{!! BootForm::submit( trans('common.submit'), array('class' => 'btn btn-primary')) !!}
{!! BootForm::close() !!}

Svi jezici

@foreach($tableModel as $item) @endforeach
R.br. Naziv Slug
{{ $count }} {{ $item->name }} {{ $item->slug }} {{ Form::open(['route' => ['admin.language.destroy', $item->id], 'method' => 'delete', 'class'=>'table-controls-button']) }} {{ Form::close() }}
@stop @section('js') @stop