@extends('admin.layouts.app') @section('styles') @endsection @section('content')

Información personal

{{ $usuario->name }}
{{ $usuario->surname }}
{{ $usuario->email }}
{{ $usuario->dni_type . ': ' . $usuario->dni }}
{{ $usuario->address }}
{{ $usuario->city }}
{{ $usuario->pais }}
{{ $usuario->nacionality }}
@php($date = new DateTime($usuario->birthdate)) {{ date_format($date, 'd/m/y') }}
{{ $usuario->telephone }}
{{ $usuario->cellphone }}

Detalle

{{ $usuario->name }}
{{ $proyecto->type }}
@if(is_null($proyecto->team_id)) individual @else grupo @endif
@if(!is_null($proyecto->team_id))
{{ $grupo->first()->nombreGrupo }}
@endif
{{ $proyecto->title }}
@if(!is_null($tipo_proyecto))
{{ $tipo_proyecto->tipo_proyecto }}
@endif
{{ $proyecto->summary }}
{!! $proyecto->description !!}
{{ $proyecto->space }}
{{ $proyecto->estimated_bucket }}
{!! $proyecto->complementary_info !!}
@if(!is_null($proyecto->material_link)) {{-- @if(preg_match('#^(https?://|www\.)#i', $proyecto->material_link) === 1) --}}
{{$proyecto->material_link}} {{--
--}}
{{-- @endif --}} @endif @if(!is_null($proyecto->material_password))
{{ $proyecto->material_password }}
@endif
@if(!is_null($proyecto->team_id))

Integrantes del grupo

@foreach($grupo as $integrante)
{{ $integrante->name }}
{{ $integrante->surname }}
{{ $integrante->email }}
{{ $integrante->dni_type . ': ' . $integrante->dni }}
{{ $integrante->address }}
{{ $integrante->city }}
{{ $integrante->pais }}
{{ $integrante->nacionality }}
@php($date = new DateTime($integrante->birthdate)) {{ date_format($date, 'd/m/y') }}
{{ $integrante->telephone }}
{{ $integrante->cellphone }}

@endforeach
@endif

Archivos adjuntos

@foreach($adjuntos as $key => $adj)
@switch($adj['mime']) @case("image-jpeg") @case("image-jp2") @case("image-png") @php($tipo_de_adjunto = "Imagen") @break @case("audio-mpeg") @php($tipo_de_adjunto = "Audio") @break @case("video-mp4") @case("video-x-m4v") @php($tipo_de_adjunto = "Video") @break @case("application-pdf") @php($tipo_de_adjunto = "Pdf") @break @default @php($tipo_de_adjunto = "") @endswitch
@switch($adj['mime']) @case("image-jpeg") @case("image-jp2") @case("image-png") @php($imagen = $adj['path'] . $adj['filename']) @break @case("audio-mpeg") @php($audio = $adj['path'] . $adj['filename']) @break @case("video-mp4") @case("video-x-m4v") @php($video = $adj['path'] . $adj['filename']) @break @case("application-pdf") @php($pdf = $adj['path'] . $adj['filename']) @foreach($arrayNombrePdf as $cadaNombrePdf) {{$cadaNombrePdf}} @endforeach {{".".$extensionPdf}} @break @default @php($tipo_de_adjunto = "") @endswitch
{{-- MODAL de imagen --}} {{-- FIN modal --}}
@endforeach
{{-- Reseñas --}}

Agregar reseña (Revisor)

{{-- Mensajes --}}
{{-- De error --}} @if ($errors->any())
    @foreach ($errors->all() as $error)
  • {{ $error }}
  • @endforeach
@endif {{-- De exito --}} @if(Session::has('reseniaGuardada')) @endif
{!! Form::open(array('route' => 'review.store', 'method' => 'POST','enctype'=>"multipart/form-data", 'class' => 'form-horizontal')) !!} {!! Form::token() !!} {{ Form::hidden('idProject', $proyecto->id) }} {{ Form::hidden('idRevisor', \Auth::id()) }}
{!! Form::label('', 'Comentario:', ['class' => 'col-sm-3']) !!}
{!! Form::textarea('comment', '', ['class' => 'form-control']) !!}
{!! Form::label('', 'Puntaje:', ['class' => 'col-sm-3']) !!}
{!! Form::select('rating', $arrayRating, null, ['placeholder' => 'Elegir']) !!}
{!! Form::submit() !!}
{!! Form::close() !!}

Reseñas

@foreach($reseniasDelProyecto as $resenia) {!! Form::open(array('route' => ['review.update', $resenia->id], 'method' => 'PATCH','enctype'=>"multipart/form-data", 'class' => 'form-horizontal')) !!} {!! Form::token() !!} {!! Form::close() !!} @endforeach
Revisor Comentario Puntaje Acción
{{ $resenia->nombreRevisor }} {{ $resenia->comment }} {{ $resenia->rating }} Editar
{{-- MENSAJES --}} {{-- Agregar mensaje --}} @endsection @section('scripts') @endsection