@extends('layout.sidebar')
@section('content')
Atributos de Desarrollo
{{ link_to_action('StudentLearnerAttributeController@getCreate', 'Nuevo Atributo', null, array('class' => 'btn btn-primary')) }}
Nombre |
Estado |
|
@forelse($studentLearnerAttribute as $attribute)
{{ $attribute->name }} |
{{ StudentLearnerAttribute::$status[$attribute->status] }} |
|
@empty
No existen resultados |
@endforelse
@stop()