@extends('layout')
@section('header')
@endsection
@section('content')
@if($solutions->count())
Descripción |
Precio |
Tipo |
Opciones |
@foreach($solutions as $solution)
{{$solution->description}} |
{{$solution->price}} |
{{$solution->type_label}} |
Detalles
Editar
|
@endforeach
{!! $solutions->render() !!}
@else
No hay soluciones para mostrar.
@endif
@endsection