|
Server : Apache/2.4.41 (Ubuntu) System : Linux vmi1525618.contaboserver.net 5.4.0-105-generic #119-Ubuntu SMP Mon Mar 7 18:49:24 UTC 2022 x86_64 User : www-data ( 33) PHP Version : 8.2.12 Disable Function : NONE Directory : /var/www/poskrypt/admin.poskrypt.com/resources/views/stock_transfer/ |
Upload File : |
@extends('layouts.app')
@section('title', __('lang_v1.stock_transfers'))
@section('content')
<!-- Content Header (Page header) -->
<section class="content-header no-print">
<h1>@lang('lang_v1.stock_transfers')
</h1>
</section>
<!-- Main content -->
<section class="content no-print">
@component('components.widget', ['class' => 'box-primary', 'title' => __('lang_v1.all_stock_transfers')])
@slot('tool')
<div class="box-tools">
<a class="btn btn-block btn-primary" href="{{action([\App\Http\Controllers\StockTransferController::class, 'create'])}}">
<i class="fa fa-plus"></i> @lang('messages.add')</a>
</div>
@endslot
<div class="table-responsive">
<table class="table table-bordered table-striped ajax_view" id="stock_transfer_table">
<thead>
<tr>
<th>@lang('messages.date')</th>
<th>@lang('purchase.ref_no')</th>
<th>@lang('lang_v1.location_from')</th>
<th>@lang('lang_v1.location_to')</th>
<th>@lang('sale.status')</th>
<th>@lang('lang_v1.shipping_charges')</th>
<th>@lang('stock_adjustment.total_amount')</th>
<th>@lang('purchase.additional_notes')</th>
<th>@lang('messages.action')</th>
</tr>
</thead>
</table>
</div>
@endcomponent
</section>
@include('stock_transfer.partials.update_status_modal')
<section id="receipt_section" class="print_section"></section>
<!-- /.content -->
@stop
@section('javascript')
<script src="{{ asset('js/stock_transfer.js?v=' . $asset_v) }}"></script>
@endsection