@extends('layouts.dashboard_layout') @section('title', 'Proyectos') @section('body-class', 'proyecto') @section('content')
@include('partials.alerts', ['success' => 'success', 'error' => 'error', 'warning' => 'warning'])
@foreach ($proyecto as $resultado) @include('dashboard.proyecto.eliminar') @include('dashboard.proyecto.archivo') @include('dashboard.proyecto.modal') @endforeach
Nombre Cliente Responsables Estado
{{ $resultado?->nombre ?? '' }} {{ $resultado?->cliente->nombre_empresa ?? '' }} {{ $resultado?->nombresResponsables ?? '' }} {{ $resultado->estado }}
@component('dashboard.proyecto.crear') @slot('clientes', $clientes) @endcomponent @endsection @section('scripts') @include('partials.scripts') @endsection