MIF_31211725/resources/views/dashboard/bahan.blade.php

163 lines
8.2 KiB
PHP

@extends('layouts.main')
@section('title')
Bahan Baku
@endsection
@section('container')
<section class="section">
<div class="card">
<div class="card-header">
<h5 class="card-title">Tabel Bahan</h5>
<button class="btn btn-primary float-end me-3" data-bs-toggle="modal" data-bs-target="#add">Tambah</button>
</div>
<div class="card-body">
<ul class="nav nav-tabs" id="myTab" role="tablist">
<li class="nav-item" role="presentation">
<a class="nav-link active" id="home-tab" data-bs-toggle="tab" href="#home" role="tab"
aria-controls="home" aria-selected="true">Bahan Baku</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="profile-tab" data-bs-toggle="tab" href="#profile" role="tab"
aria-controls="profile" aria-selected="false">Bahan Baku Masuk</a>
</li>
<li class="nav-item" role="presentation">
<a class="nav-link" id="contact-tab" data-bs-toggle="tab" href="#contact" role="tab"
aria-controls="contact" aria-selected="false">Bahan Baku Keluar</a>
</li>
</ul>
<div class="tab-content" id="myTabContent">
<div class="tab-pane fade show active" id="home" role="tabpanel" aria-labelledby="home-tab">
<table class="table table-striped mt-2" id="table1">
<thead>
<tr>
<th>No</th>
<th>Nama</th>
<th>Qty</th>
</tr>
</thead>
<tbody>
@foreach ($bahan as $item)
<tr>
<td>{{ $loop->iteration }}</td>
<td>{{ $item->nama }}</td>
<td>
{{ $item->qty }} meter
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="tab-pane fade" id="profile" role="tabpanel" aria-labelledby="profile-tab">
<table class="table table-striped mt-2" id="table1">
<thead>
<tr>
<th>No</th>
<th>Nama</th>
<th>Harga</th>
<th>Qty</th>
<th>Total Harga</th>
<th>Tanggal</th>
</tr>
</thead>
<tbody>
@foreach ($bahanMasuk as $item)
<tr>
<td>{{ $loop->iteration }}</td>
<td>{{ $item->bahanBaku->nama }}</td>
<td>
Rp. {{ number_format($item->bahanBaku->harga, 0, ',', '.') }}
</td>
<td>
{{ $item->qty }} meter
</td>
<td>
Rp. {{ number_format($item->bahanBaku->total_harga, 0, ',', '.') }}
</td>
<td>
{{ \Carbon\Carbon::parse($item->created_at)->format('d F Y') }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<div class="tab-pane fade" id="contact" role="tabpanel" aria-labelledby="contact-tab">
<table class="table table-striped" id="table1">
<thead>
<tr>
<th>No</th>
<th>Nama</th>
<th>Pesanan</th>
<th>Qty</th>
<th>Tanggal</th>
</tr>
</thead>
<tbody>
@foreach ($bahanKeluar as $item)
<tr>
<td>{{ $loop->iteration }}</td>
<td>{{ $item->bahanBaku->nama }}</td>
<td>
{{ $item->pesanan->produk->nama }} x {{ $item->pesanan->qty }}
</td>
<td>
{{ $item->qty }} meter
</td>
<td>
{{ \Carbon\Carbon::parse($item->created_at)->format('d F Y') }}
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
</div>
</div>
</section>
{{-- modal add --}}
<div class="modal fade text-left" id="add" tabindex="-1" role="dialog" aria-labelledby="myModalLabel1"
data-bs-backdrop="false" aria-hidden="true">
<div class="modal-dialog modal-dialog-scrollable modal-lg" role="document">
<div class="modal-content">
<div class="modal-header">
<h5 class="modal-title" id="myModalLabel1">Tambah Data Bahan Baku</h5>
<button type="button" class="close rounded-pill" data-bs-dismiss="modal" aria-label="Close">
<i data-feather="x"></i>
</button>
</div>
<form action="{{ route('bahan-store') }}" method="post">
@csrf
<div class="modal-body">
<div class="form-group">
<label for="first-name-vertical">Nama</label>
<input type="text" id="first-name-vertical" required class="form-control" name="nama" />
</div>
<div class="form-group">
<label for="first-name-vertical">Harga</label>
<input type="number" id="first-name-vertical" required class="form-control" name="harga" />
</div>
<div class="form-group">
<label for="first-name-vertical">Qty /m</label>
<input type="number" id="first-name-vertical" required class="form-control" name="qty" />
</div>
</div>
<div class="modal-footer">
<button type="button" class="btn" data-bs-dismiss="modal">
<i class="bx bx-x d-block d-sm-none"></i>
<span class="d-none d-sm-block">Tutup</span>
</button>
<button type="submit" class="btn btn-primary ms-1">
<i class="bx bx-check d-block d-sm-none"></i>
<span class="d-none d-sm-block">Simpan</span>
</button>
</div>
</form>
</div>
</div>
</div>
@endsection