init project

This commit is contained in:
2026-05-25 11:08:52 +07:00
parent a388c619b5
commit 895fdd9b83
1437 changed files with 384844 additions and 27 deletions

View File

@@ -0,0 +1,170 @@
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
@include('layout.header')
</head>
<body>
<div class="row" id="x" style="display: none;">
<div class="col-12">
<span class="d-flex align-items-center purchase-popup">
<i class="typcn typcn-delete-outline" id="bannerClose"></i>
</span>
</div>
</div>
<div class="container-scroller">
@include('layout.navbar')
<!-- partial -->
@include('layout.breadscrum')
<div class="container-fluid page-body-wrapper">
@include('layout.sidebar')
<!-- partial -->
<div class="main-panel">
<div class="content-wrapper">
<div class="row">
<div class="col-md-12 grid-margin stretch-card">
<div class="card">
<div class="card-body">
<h4 class="card-title"><i class="mdi mdi-dots-vertical menu-icon"></i> {{__('organism.table_title')}}</h4>
<div class="row">
<div class="col-sm-12">
<form method="get" action="{{url('organism/search')}}">
<div class="row">
<div class="col-xs-12 col-sm-12 col-md-7 col-lg-7">
<div class="input-group">
<input type="text" class="form-control rounded-top-left-25 rounded-bottom-left-25 rounded-right-0" value="{{isset($_GET['kword']) ? $_GET['kword'] : ''}}" name="kword" id="kword" placeholder="{{__('organism.search_placeholder')}}">
<div class="input-group-append">
<button class="btn btn-inverse-secondary px-3 rounded-top-right-25 rounded-bottom-right-25" type="submit"><i class="fa fa-search"></i> {{__('general.btn_search')}}</button>
@if(\App\Http\Controllers\Helper\GlobalController::user_can(Auth::user()->role_id, ['create_organism']))
<button class="btn btn-inverse-success waves-effect px-3 ml-2 rounded-25" type="button" data-action="new" data-toggle="modal" data-target="#modal-organism" data-backdrop="static"><i class="typcn typcn-plus"></i> {{__('general.btn_add_new')}}</button>
@endif
</div>
</div>
</div>
</div>
</form> <hr class="my-3 d-none">
<div class="col-sm-12 p-0 mb-1 mt-3">
<div class="table-responsive">
<table class="table table-bordered table-hover" id="department_dt">
<thead>
<tr class="bg-gradient-light">
<th class="py-2" width="50px">{{__('organism.table_no')}}</th>
<th class="py-2 text-center" width="100px">{{__('organism.table_action')}}</th>
<th class="py-2">{{__('organism.table_name')}}</th>
{{-- <th class="py-2 text-center" width="100px">{{__('organism.table_status')}}</th>--}}
</tr>
</thead>
<tbody>
@foreach($organisms as $k=>$organism)
<tr>
<td class="py-1 text-center">{{($k+1) + (($_GET['page'] ?? 1) * 20) - 20}}</td>
<td class="py-1 text-center">
<div class="btn-group" role="group" aria-label="Basic example" >
@if(\App\Http\Controllers\Helper\GlobalController::user_can(Auth::user()->role_id, ['update_organism']))
<button type="button" class="btn btn-sm btn-inverse-info mr-2 py-1" title="{{__('general.btn_edit')}}" data-action="edit" data-uid="{{$organism->id}}" data-toggle="modal" data-target="#modal-organism" data-backdrop="static">
<i class="typcn typcn-edit"></i>
</button>
@endif
@if($organism->record_status_id==0)
<button type="button" class="btn btn-sm btn-inverse-primary " title="Restore" onclick="restore_data({{$organism->id}})"><i class="typcn typcn-plus"></i></button>
@else
@if(\App\Http\Controllers\Helper\GlobalController::user_can(Auth::user()->role_id, ['delete_organism']))
<button type="button" class="btn btn-sm btn-inverse-danger py-1" title="{{__('general.btn_delete')}}" onclick="delete_data({{$organism->id}})"><i class="mdi mdi-close-circle"></i></button>
@endif
@endif
</div>
</td>
<td class="py-1">{{$organism->name_en}}</td>
{{-- <td class="py-1 text-center">--}}
{{-- <i class="mdi {{$organism->record_status_id == 1 ? 'mdi-check-circle text-primary' : 'mdi-checkbox-blank-circle-outline'}}"></i>--}}
{{-- </td>--}}
</tr>
@endforeach
</tbody>
</table>
</div>
</div>
<div class="float-right mt-3">
{!! $organisms->appends($_GET)->links('pagination.custom') !!}
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Modal Laboratory -->
<div class="modal fade modal-primary" id="modal-organism">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<h6 class="modal-title new">{{__('Sample Source')}}</h6>
<button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true" class="mdi mdi-close"></span></button>
</div>
<div class="modal-body">
<form method="post" action="#" id="form" onkeydown="return event.key != 'Enter';">
@csrf
<input type="hidden" class="form-control" name="uid" id="data-id" value="0" />
<div class="form-vertical">
<div class="form-group mb-1">
<label for="lab-name-en">{{__('organism.form_name')}} <span class="text-danger">*</span></label>
<input type="text" class="form-control" name="name_en" id="name-en" placeholder="{{__('organism.form_name')}}">
</div>
<div class="form-check form-check-flat form-check-primary mb-1 mt-3">
<div class="form-check form-check-primary">
<label class="form-check-label">
<input type="checkbox" class="checkbox" value="1" name="is_bold" id="is-bold"> {{__('organism.is_bold')}}
</label>
</div>
</div>
<div class="form-group mb-1">
<label for="lab-name-en">{{__('organism.form_sort')}}</label>
<input type="number" class="form-control" value="0" name="weight" id="weight">
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button type="button" class="btn btn-info rounded-25" id="btnSave"><i class="fa fa-floppy-o"></i>&nbsp;&nbsp;<span class="save">{{__('general.btn_save')}}</span><span class="update" style="display: none">{{__('lang.update')}}</span></button>
<button type="button" class="btn btn-secondary rounded-25 mx-3" data-dismiss='modal'>{{__('general.btn_cancel')}}</button>
</div>
</div>
</div>
</div>
@include('layout.footer')
</div>
</div>
</div>
@include('layout.common_script')
<script>
let save_url = "{{url('organism.save')}}";
let update_url = "{{url('organism.update')}}";
let delete_url = "{{url('organism.delete')}}";
let restore_url = "{{url('organism.restore')}}";
let get_url = "{{url('organism.get')}}";
let modal_add_title = "{{__('organism.form_add_tittle')}}";
let modal_edit_title = "{{__('organism.form_edit_tittle')}}";
</script>
<script src="{{url(env("APP_URL").'storage/assets/js/admin/organism.js')}}"></script>
</body>
</html>