@extends('layouts.backend')
@section('titulo')
@endsection
@section('contenido')
@include('alerts.success')
@if (count($imgs))
Imagen |
Título |
Descripción |
Categoria |
Acciones |
@foreach ($imgs as $img)
@if(empty($img->path))
}}/no-imagen.jpg) |
@else
}}/{{$img->path}}) |
@endif
{{ $img->titulo }} |
{{ $img->descripcion }} |
{{ $img->nombre }} |
{!! Form::open(array('method' => 'DELETE', 'route' => array('imagen.destroy', $img->id))) !!}
{!! Form::close() !!}
|
@endforeach
@else
No hay imagenes
@endif
@stop