@extends('layouts.app') @section('title', 'Dashboard - SSE RAB System') @section('content')

Dashboard

Selamat datang, {{ auth()->user()->name }}. Pilih proyek untuk mulai bekerja.

Total Proyek

{{ $totalProjects }}

Total Material

{{ $totalItems }}
@forelse($projects as $project)
{{ $project->kode_proyek }}
{{ $project->nama_proyek }}
{{ $project->status }}
@if($project->lokasi)

{{ $project->lokasi }}

@endif @if($project->type_rumah)

{{ $project->type_rumah }}

@endif
@empty
Belum ada proyek. Tambah proyek pertama.
@endforelse
@endsection