Kaydet (Commit) 75dd427e authored tarafından Baran Sekin's avatar Baran Sekin

Fixed a little bug

üst a06035d4
......@@ -263,7 +263,7 @@ class MainController extends Controller
public function updateExtOrders()
{
foreach (json_decode(request('data')) as $extension) {
Extension::find($extension->id)->update([
Extension::where('id', $extension->id)->update([
"order" => $extension->order
]);
}
......
<div class="box box-solid box-default" style="margin:20px;width: auto;min-width:200px;float: left;height: auto;min-height:85px;border:2px solid #d2d6de">
<div class="box-header">
<h3 class="box-title">{{__($title)}}</h3>
</div>
<div class="box-body" style="height: auto;">
<span style="height: auto" id="{{$id}}" class="{{$class}}"></span>
</div>
</div>
\ No newline at end of file
<div class="box-header">
<h3 class="box-title">{{__($title)}}</h3>
</div>
<div class="box-body" style="height: auto;">
<span style="height: auto" id="{{$id}}" class="{{$class}}"></span>
</div>
</div>
\ No newline at end of file
@php($rand = str_random(3))
<?php
@php
$rand = str_random(3);
if(extensionDb("server_type") == "Active Directory" || extensionDb("server_type") == "Samba"){
$data = $data["windows"];
}else{
$data = $data["linux"];
}
?>
@endphp
@isset($open)
<div class="box box-default box-solid">
@else
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment