| Path : /proc/self/root/var/www/html/thb_loan_system/resources/views/warehouse/ |
|
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
| Current File : //proc/self/root/var/www/html/thb_loan_system/resources/views/warehouse/data.blade.php |
@extends('layouts.master')
@section('title'){{translate('warehouse')}}
@endsection
@section('content')
<div class="panel panel-white">
<div class="panel-heading">
<h6 class="panel-title"> {{translate('warehouse')}}</h6>
<div class="heading-elements">
@if(Sentinel::hasAccess('stock.create'))
<a href="{{ url('warehouse/create') }}"
class="btn btn-info btn-sm">{{translate('add warehouse')}}</a>
@endif
</div>
</div>
<div class="panel-body">
<table id="" class="table table-bordered table-hover">
<thead>
<tr>
<th>{{ translate('name') }}</th>
<th>{{ translate('note') }}</th>
<th>{{ translate('action') }}</th>
</tr>
</thead>
<tbody>
@foreach($data as $key)
<tr>
<td>{{ $key->name }}</td>
<td>{{ $key->notes }}</td>
<td>
<ul class="icons-list">
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">
<i class="icon-menu9"></i>
</a>
<ul class="dropdown-menu dropdown-menu-right">
@if(Sentinel::hasAccess('stock.view'))
<li><a href="{{ url('warehouse/'.$key->id.'/show') }}"><i
class="fa fa-search"></i> {{ translate('detail') }}
</a>
</li>
@endif
@if(Sentinel::hasAccess('stock.update'))
<li><a href="{{ url('warehouse/'.$key->id.'/edit') }}"><i
class="fa fa-edit"></i> {{ translate('edit') }} </a>
</li>
@endif
@if(Sentinel::hasAccess('stock.delete'))
<li><a href="{{ url('warehouse/'.$key->id.'/delete') }}"
class="delete"><i
class="fa fa-trash"></i> {{ translate('delete') }} </a>
</li>
@endif
</ul>
</li>
</ul>
</td>
</tr>
@endforeach
</tbody>
</table>
</div>
<!-- /.panel-body -->
</div>
<!-- /.box -->
@endsection
@section('footer-scripts')
@endsection