@extends('admin.layout') @section('title','Categorias') @section('content')

Categoria

{!! Form::open(['route' => 'categorias.store', 'method' => 'post', 'novalidate','class'=>'form-horizontal','id'=>'form1']) !!}

{!! Form::close() !!}

Catalogo de categorias

@if(count($categorias)>0) @foreach ($categorias as $categoria) {!! Form::open(['route'=>['categorias.destroy',':ID'],'method'=>'DELETE','id'=>'form-delete']) !!} {!! Form::close() !!} {!! Form::model($categoria,['route' => ['categorias.update','::ID'], 'method' => 'PUT', 'novalidate','class'=>'form-horizontal','id'=>'form-update']) !!} {!! Form::close() !!} @endforeach @endif
Clave Categoria Fuente financiamiento Unidad Responsable Programaticos descripcion status Motivo Fecha inicial Fecha final tipo plaza num plaza opciones
{{$categoria->clave_categoria}} {{$categoria->categoria}} {{$categoria->fuente_financiamiento}} {{$categoria->unidad_responsable}} {{$categoria->programaticos}} {{$categoria->descripcion}} {{$categoria->status}} {{$categoria->motivo}} {{$categoria->fecha_ini}} {{$categoria->fecha_fin}} {{$categoria->tipo_plaza}} {{$categoria->num_plaza}}
{!! Form::open(['route'=>['categorias.destroy',':ID'],'method'=>'DELETE','id'=>'form-delete']) !!} {!! Form::close() !!} @if(count($categorias)>0) {!! Form::model($categoria,['route' => ['categorias.update','::ID'], 'method' => 'PUT', 'novalidate','class'=>'form-horizontal','id'=>'form-update']) !!} {!! Form::close() !!} @endif @endsection @section('scripts') @endsection