@extends('admin.layouts.master') @section('content')

{!! link_to_route(config('coreadmin.route').'.employeeslist.create', trans('coreadmin::templates.templates-view_index-add_new') , null, array('class' => 'btn btn-success')) !!}

@if ($employeeslist->count())
{{ trans('coreadmin::templates.templates-view_index-list') }}
@foreach ($employeeslist as $row) @endforeach
{!! Form::checkbox('delete_all',1,false,['class' => 'mass']) !!} Name  
{!! Form::checkbox('del-'.$row->id,1,false,['class' => 'single','data-id'=> $row->id]) !!} {{ $row->name }} {!! link_to_route(config('coreadmin.route').'.employeeslist.edit', trans('coreadmin::templates.templates-view_index-edit'), array($row->id), array('class' => 'btn btn-xs btn-info')) !!} {!! Form::open(array('style' => 'display: inline-block;', 'method' => 'DELETE', 'onsubmit' => "return confirm('".trans("coreadmin::templates.templates-view_index-are_you_sure")."');", 'route' => array(config('coreadmin.route').'.employeeslist.destroy', $row->id))) !!} {!! Form::submit(trans('coreadmin::templates.templates-view_index-delete'), array('class' => 'btn btn-xs btn-danger')) !!} {!! Form::close() !!}
{!! Form::open(['route' => config('coreadmin.route').'.employeeslist.massDelete', 'method' => 'post', 'id' => 'massDelete']) !!} {!! Form::close() !!}
@else {{ trans('coreadmin::templates.templates-view_index-no_entries_found') }} @endif @endsection @section('javascript') @stop