You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

60 lines
2.9 KiB

@extends('layouts.app')
@section('title', __('product.list'))
@section('content')
<div class="pull-right">
{{ link_to_route('products.price-list', __('product.print_price_list'), [], ['class' => 'btn btn-info']) }}
{{ link_to_route('products.index', __('product.create'), ['action' => 'create'], ['class' => 'btn btn-success']) }}
</div>
<h3 class="page-header">
{{ __('product.list') }}
<small>{{ __('app.total') }} : {{ $products->total() }} {{ __('product.product') }}</small>
</h3>
<div class="row">
<div class="col-md-8">
<div class="panel panel-default table-responsive">
<div class="panel-heading">
{{ Form::open(['method' => 'get','class' => 'form-inline']) }}
{!! FormField::text('q', ['value' => request('q'), 'label' => __('product.search'), 'class' => 'input-sm']) !!}
{{ Form::submit(__('product.search'), ['class' => 'btn btn-sm']) }}
{{ link_to_route('products.index', __('app.reset')) }}
{{ Form::close() }}
</div>
<table class="table table-condensed">
<thead>
<tr>
<th class="text-center">{{ __('app.table_no') }}</th>
<th>{{ __('product.name') }}</th>
<th>{{ __('product.unit') }}</th>
<th class="text-right">{{ __('product.cash_price') }}</th>
<th class="text-right">{{ __('product.credit_price') }}</th>
<th class="text-center">{{ __('app.action') }}</th>
</tr>
</thead>
<tbody>
<?php $customersTotal = 0?>
@foreach($products as $key => $product)
<tr>
<td class="text-center">{{ $products->firstItem() + $key }}</td>
<td>{{ $product->name }}</td>
<td>{{ $product->unit->name }}</td>
<td class="text-right">{{ format_rp($product->cash_price) }}</td>
<td class="text-right">{{ format_rp($product->credit_price) }}</td>
<td class="text-center">
{!! link_to_route('products.index', __('app.edit'), ['action' => 'edit', 'id' => $product->id] + request(['page','q']), ['id' => 'edit-product-' . $product->id]) !!} |
{!! link_to_route('products.index', __('app.delete'), ['action' => 'delete', 'id' => $product->id] + request(['page','q']), ['id' => 'del-product-' . $product->id]) !!}
</td>
</tr>
@endforeach
</tbody>
</table>
<div class="panel-body">{{ $products->appends(Request::except('page'))->render() }}</div>
</div>
</div>
<div class="col-md-4">
@include('products.partials.forms')
</div>
</div>
@endsection