@extends('layouts.app') @section('title', 'Marketing') @section('breadcrumb') @endsection @section('title-section', 'Marketing') @section('content')
@foreach ($data as $row) @endforeach
Nama Customer Jenis Layanan Nama Projek Status Progress
{{ $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['progress'] == 0)
@endif @if ($row['progress'] > 0 && $row['progress'] < 100)
@endif @if ($row['progress'] == 100)
@endif
@endsection