Commit 05871c57 by PratiwiOkuli

Browse Image pada CRUD Barang

parent 5a06f618
......@@ -27,7 +27,6 @@ class InventoriController extends Controller
'nama' => 'required',
'jumlah' => 'required',
'harga' => 'required',
'deskripsi' => 'required',
'kategori' => 'required',
'gambar' => 'required',
]);
......@@ -36,7 +35,6 @@ class InventoriController extends Controller
$barangs->nama = $request['nama'];
$barangs->jumlah = $request['jumlah'];
$barangs->harga = $request['harga'];
$barangs->deskripsi = $request['deskripsi'];
$barangs->kategori = $request['kategori'];
$barangs->gambar = $request['gambar'];
$barangs->save();
......@@ -57,7 +55,6 @@ class InventoriController extends Controller
'nama' => 'required',
'jumlah' => 'required',
'harga' => 'required',
'deskripsi' => 'required',
'kategori' => 'required',
'gambar' => 'required',
]);
......@@ -66,7 +63,6 @@ class InventoriController extends Controller
$barangs->nama = $request->nama;
$barangs->jumlah = $request->jumlah;
$barangs->harga = $request->harga;
$barangs->deskripsi = $request->deskripsi;
$barangs->kategori = $request->kategori;
$barangs->gambar = $request->gambar;
$barangs->save();
......
......@@ -50,19 +50,6 @@
</div>
</div>
<div class="form-group{{ $errors->has('deskripsi') ? ' has-error' : '' }}">
<label for="title" class="col-md-4 control-label">Deskripsi</label>
<div class="col-md-6">
<input type="text" class="form-control" name="deskripsi" value="{{ old('deskripsi') }}" >
@if ($errors->has('deskripsi'))
<span class="help-block">
<strong>{{ $errors->first('deskripsi') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group{{ $errors->has('kategori') ? ' has-error' : '' }}">
<label for="title" class="col-md-4 control-label">Kategori</label>
<div class="col-md-6">
......@@ -81,18 +68,19 @@
</div>
</div>
<div class="form-group{{ $errors->has('gambar') ? ' has-error' : '' }}">
<div class="form-group{{ $errors->has('images') ? ' has-error' : '' }}">
<label for="title" class="col-md-4 control-label">Gambar</label>
<div class="col-md-6">
<input type="text" class="form-control" name="gambar" value="{{ old('gambar') }}" >
@if ($errors->has('gambar'))
<input type="file" class="inputimages" name="gambar" value="{{ old('gambar') }}" >
@if ($errors->has('image'))
<span class="help-block">
<strong>{{ $errors->first('gambar') }}</strong>
<strong>{{ $errors->first('image') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<input type="hidden" name="_token" value="{{ csrf_token() }}">
......
......@@ -51,18 +51,6 @@
</div>
</div>
<div class="form-group{{ $errors->has('deskripsi') ? ' has-error' : '' }}">
<label for="title" class="col-md-4 control-label">Deskripsi</label>
<div class="col-md-6">
<input type="text" class="form-control" name="deskripsi" value="{{ $barangs->deskripsi }}" >
@if ($errors->has('deskripsi'))
<span class="help-block">
<strong>{{ $errors->first('deskripsi') }}</strong>
</span>
@endif
</div>
</div>
<div class="form-group{{ $errors->has('kategori') ? ' has-error' : '' }}">
<label for="title" class="col-md-4 control-label" value="{{ $barangs->gambar }}">Kategori</label>
......@@ -82,20 +70,14 @@
</div>
</div>
<div class="form-group{{ $errors->has('gambar') ? ' has-error' : '' }}">
<div class="form-group{{ $errors->has('image') ? ' has-error' : '' }}">
<label for="title" class="col-md-4 control-label">Gambar</label>
<div class="col-md-6">
<input type="text" class="form-control" name="gambar" value="{{ $barangs->gambar }}" >
@if ($errors->has('gambar'))
<span class="help-block">
<strong>{{ $errors->first('gambar') }}</strong>
</span>
@endif
<input type="file" class="inputimages" name="gambar" value="{{ $barangs->gambar }}" >
{!! $errors->first('gambar', '<p class="help-block">:message</p>') !!}
</div>
</div>
<div class="form-group">
<div class="col-md-6 col-md-offset-4">
<button type="submit" class="btn btn-primary">
......
......@@ -15,7 +15,6 @@
<th>Nama Barang</th>
<th>Stock</th>
<th>Harga</th>
<th>Deskripsi</th>
<th>Kategori</th>
<th>Gambar</th>
<th>Action</th>
......@@ -28,9 +27,8 @@
<td>{{$barang->nama}}</td>
<td>{{$barang->jumlah}}</td>
<td>{{$barang->harga}}</td>
<td>{{$barang->deskripsi}}</td>
<td>{{$barang->kategori}}</td>
<td>{{$barang->gambar}}</td>
<td><img src="{{ asset('image/'. $barang->gambar) }}" style="height: 150px; width: 200px; "> </td>
<td>
<a href="{{ url('/edit', $barang->id) }}" type="submit" button type="button" class="btn btn-warning">Edit</a>
<a href="{{ url('/delete', $barang->id) }}" class="btn btn-warning">Delete</a>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment