@extends('layouts.app') @section('content')
返回账号首页

骏智成本估算器管理面板

更新excel:

数据库里的excel

最后更新于: {{$time}}. 文件大小: {{$size/1000}}KB


上传新excel

@if (session('error'))
{{ session('error') }}
@endif @if (session('success'))
{{ session('success') }}
@endif
{{ csrf_field() }}
人员权限管理面板:
@foreach($users as $user) @if(auth()->user()==$user) @else @endif @endforeach
用户名 电邮 上一次登陆 上一次登陆设备 操作
{{$user->name}} {{$user->email}} {{$user->updated_at}} {{$user->deviceInfo}}
添加新人员账号:
{{ csrf_field() }}
@if ($errors->has('name')) {{ $errors->first('name') }} @endif
@if ($errors->has('email')) {{ $errors->first('email') }} @endif
@if ($errors->has('password')) {{ $errors->first('password') }} @endif
@endsection @section('script') @endsection