@extends('layouts.app') @section('title', 'Data Customer') @section('breadcrumb') @endsection @section('title-section', 'Data Customer') @section('content')
@foreach ($data as $row) @endforeach
Nama Customer Jenis Layanan Nama Projek Status Progress Action
{{ $row['nama_customer'] }} {{ $row['layanan'] }} {{ $row['nama_project'] }} @if ($row['status'] == 'SELESAI') {{ $row['status'] }} @endif @if ($row['status'] == 'PENDING') {{ $row['status'] }} @endif @if ($row['status'] == 'PROSES') {{ $row['status'] }} @endif @if ($row['status'] == 'BATAL') {{ $row['status'] }} @endif @if ($row['status'] == 'BATAL')
@else @if ($row['progress'] == 0)
@endif @if ($row['progress'] > 0 && $row['progress'] < 100)
@endif @if ($row['progress'] == 100)
@endif @endif
Detail
@endsection @push('addon-script') @endpush