@extends('layouts.backend')
@section('ruta')
Listado de Usuarios
@stop
@section('titulo')
Animación principal
Nuevo
@endsection
@section('contenido')
@include('alerts.success')
@if (count($imgs))
# |
Imagen |
Titulo |
Enlace |
Categoria |
Acciones |
@foreach ($imgs as $img)
{{ $img->id }} |
@if(empty($img->path))
}}/no-imagen.jpg) |
@else
|
@endif
{{ $img->titulo }} |
{{$img->enlace}} |
{{ $img->nombre }} |
{!! Form::open(array('method' => 'DELETE', 'route' => array('animacion.destroy', $img->id))) !!}
{!! Form::close() !!}
|
@endforeach
@else
No hay imagenes
@endif
@stop