@extends('layoututama') @section('content')

  

@if(!empty($query)) @foreach($query as $row) @endforeach @endif
No. ID Tgl.Pesanan Nama Pelanggan No. Telp Tgl. Proses Status Aksi
{{$no++}} {{$row->id_trans}} {{date('d/m/Y',strtotime($row->tgl_trans))}} {{$row->namapel}} {{$row->telppel}} {{date('d/m/Y',strtotime($row->tgl_proses))}} @if($row->status == 'baru') BARU @elseif($row->status == 'pending') MENUNGGU @elseif($row->status == 'proses') SEDANG PROSES @elseif($row->status == "selesai") SELESAI @elseif($row->status == "batal") BATAL @else SPK @endif
@if($row->status == 'proses') @endif
@endsection