@@ -301,6 +301,9 @@
@section('lastScript')
<script>
let rejectedBills={!! $rejectedBills->toJson()!!}.data;
+ rejectedBills.forEach(function(rejectedBill){
+ rejectedBill.detailFolding=true;
+ })
let owners=[
@foreach($owners as $owner)
{id:'{{$owner->id}}',name:'{{$owner->name}}'},
@@ -1,3 +1,7 @@
+#!/bin/sh
+ps -aux|grep laravel-echo-server |grep -v grep|awk '{print $2}'|xargs kill
+ps -aux|grep artisan |grep -v grep|awk '{print $2}'|xargs kill
+
nohup laravel-echo-server start >/dev/null 2>&1 &
nohup php artisan queue:work --tries=2 --delay=2 >/dev/null 2>&1 &