@extends('layouts.admin') @section('title','Participantes') @section('styles') @endsection @section('options') @endsection @section('preference') @endsection @section('content')
@foreach ($participantes as $participante) @endforeach
Id Nombre Sigla Acciones
{{$participante->id}} {{$participante->nombre}} {{$participante->apellido}} {{$participante->codigo}} {!! Form::open(['route'=>['participantes.destroy',$participante], 'method'=>'DELETE']) !!} {!! Form::close() !!}
{{-- --}}
@endsection @section('scripts') {!! Html::script('melody/js/data-table.js') !!} @endsection