mirror of
https://gitlab.com/signalytic/client-external/streamline/streamline-emr.git
synced 2026-09-12 19:21:33 +00:00
144 lines
7.5 KiB
PHP
Executable File
144 lines
7.5 KiB
PHP
Executable File
@extends('layouts.main')
|
|
|
|
@push('styles')
|
|
<link href="{{ asset('/elite/bower_components/datatables/jquery.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
|
|
<link href="{{ asset('elite/tables/css/buttons.dataTables.min.css') }}" rel="stylesheet" type="text/css" />
|
|
<link href="{{ asset('elite/bower_components/bootstrap-datepicker/bootstrap-datepicker.min.css') }}" rel="stylesheet" type="text/css" />
|
|
@endpush
|
|
|
|
@section('content')
|
|
|
|
<div class="row bg-title">
|
|
<div class="col-lg-3 col-md-4 col-sm-4 col-xs-12">
|
|
<h4 class="page-title">{{ __('labs.create_multiple_labs') }}</h4>
|
|
</div>
|
|
<div class="col-lg-9 col-sm-8 col-md-8 col-xs-12">
|
|
<ol class="breadcrumb">
|
|
<li><a href="{{ route('home') }}"><i class="fa fa-home"></i> {{ __('labs.home') }}</a></li>
|
|
</ol>
|
|
</div>
|
|
</div>
|
|
|
|
<div class="row">
|
|
<div class="col-sm-12">
|
|
@include('investigations::labs.menu')
|
|
@include('flash::message')
|
|
|
|
{{ Form::open(['method'=>'POST', 'route'=>'labs.store_bulk']) }}
|
|
|
|
<div class="white-box" style="border-radius: 10px;">
|
|
<div class="table-responsive">
|
|
<table class="table table-hover color-bordered-table success-bordered-table table-striped">
|
|
<thead>
|
|
<tr>
|
|
<th>{{ __('labs.name') }}</th>
|
|
{{-- <th>{{ __('labs.cost') }}</th>
|
|
<th>{{ __('labs.insurance_status') }}</th>
|
|
<th>{{ __('labs.non_insured_price') }}</th>
|
|
<th>{{ __('labs.insured_price') }}</th>
|
|
<th>{{ __('labs.income_account') }}</th> --}}
|
|
<th>{{ __('labs.expense_account') }}</th>
|
|
{{-- <th>{{ __('labs.stock') }}</th>--}}
|
|
<th>{{ __('labs.reorder_level') }}</th>
|
|
<th>{{ __('labs.description') }}</th>
|
|
<th>{{ __('labs.form') }}</th>
|
|
<th>{{ __('labs.unit') }}</th>
|
|
{{-- <th>{{ __('labs.expiry_date') }}</th>
|
|
<th>{{ __('labs.supplier') }}</th> --}}
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
@for($i = 0; $i < 25; $i++)
|
|
<tr>
|
|
<td><input name="name[]" class="form-control" type="text"></td>
|
|
{{-- <td><input name="cost_price[]" class="form-control" type="number"></td>
|
|
<td>
|
|
<select name="chi_status[]" class="form-control">
|
|
<option>- select -</option>
|
|
<option value="1">{{ __('labs.yes') }}</option>
|
|
<option value="0">{{ __('labs.no') }}</option>
|
|
</select>
|
|
</td>
|
|
<td><input name="non_insured_price[]" class="form-control" type="number"></td>
|
|
<td><input name="insured_price[]" class="form-control" type="number"></td>
|
|
<td>
|
|
{{ Form::select('chart_of_account[]', $chart_of_accounts, null, ['class'=>'form-control compulsory income_account']) }}
|
|
</td> --}}
|
|
<td>
|
|
{{ Form::select('expenses_account_id[]', $expense_accounts, null, ['class'=>'form-control compulsory expense_account']) }}
|
|
</td>
|
|
{{-- <td><input name="stock[]" class="form-control" type="number"></td>--}}
|
|
<td><input name="re_order_level[]" class="form-control" type="number"></td>
|
|
<td><input name="description[]" class="form-control" type="text"></td>
|
|
<th>
|
|
<select name="form[]" class="form-control">
|
|
<option>- {{ __('labs.select') }} -</option>
|
|
@foreach($forms as $item)
|
|
<option value="{{ $item->id }}">{{ $item->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</th>
|
|
<th>
|
|
<select name="unit[]" class="form-control">
|
|
<option>- {{ __('labs.select') }} -</option>
|
|
@foreach($units_of_measure as $item)
|
|
<option value="{{ $item->id }}">{{ $item->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</th>
|
|
{{-- <td><input name="expiry_date[]" class="form-control expiry_date" readonly type="text"></td>
|
|
<th>
|
|
<select name="supplier[]" class="form-control">
|
|
<option>- {{ __('labs.select') }} -</option>
|
|
@foreach($suppliers as $item)
|
|
<option value="{{ $item->id }}">{{ $item->name }}</option>
|
|
@endforeach
|
|
</select>
|
|
</th> --}}
|
|
</tr>
|
|
@endfor
|
|
</tbody>
|
|
<tfoot>
|
|
<tr>
|
|
<th>{{ __('labs.name') }}</th>
|
|
{{-- <th>{{ __('labs.cost') }}</th>
|
|
<th>{{ __('labs.insurance_status') }}</th>
|
|
<th>{{ __('labs.non_insured_price') }}</th>
|
|
<th>{{ __('labs.insured_price') }}</th>
|
|
<th>{{ __('labs.income_account') }}</th> --}}
|
|
<th>{{ __('labs.expense_account') }}</th>
|
|
{{-- <th>{{ __('labs.stock') }}</th>
|
|
<th>{{ __('labs.reorder_level') }}</th> --}}
|
|
<th>{{ __('labs.description') }}</th>
|
|
<th>{{ __('labs.form') }}</th>
|
|
<th>{{ __('labs.unit') }}</th>
|
|
{{-- <th>{{ __('labs.expiry_date') }}</th>
|
|
<th>{{ __('labs.supplier') }}</th> --}}
|
|
</tr>
|
|
</tfoot>
|
|
</table>
|
|
</div>
|
|
|
|
<br/>
|
|
|
|
<div class="form-group text-right">
|
|
<input type="submit" class="btn btn-rounded btn-success">
|
|
</div>
|
|
</div>
|
|
|
|
{{ Form::close() }}
|
|
</div>
|
|
</div>
|
|
|
|
@endsection
|
|
|
|
@push('scripts')
|
|
<script type="text/javascript" src="{{ asset('elite/bower_components/bootstrap-datepicker/bootstrap-datepicker.min.js') }}"></script>
|
|
<script>
|
|
$('.expiry_date').datepicker({
|
|
autoclose: true,
|
|
todayHighlight: true,
|
|
format: 'yyyy-mm-dd'
|
|
});
|
|
</script>
|
|
@endpush |