Laravel5学生成绩管理系统-07-添加侧边栏
程序员文章站
2022-04-08 19:33:53
...
可能看到上面图片中的右侧栏吧,我们先把它完成,然后一一实现它的功能.将index视图文件中的read2替换成:**read2 => @include('Admin.right_bar') **_admin/index.blade.php_```@extends('master') {{-- 继承master模版 --}}@section('title') 管理员@stop@section('content')@stop```![输入图片说明](http://img2.ph.126.net/eC6f0VCiWj85AnBCZh_U_g==/3355744672446850589.jpg "在这里输入图片标题")```@include('Admin.right_bar')```接着新建**Admin/right_bar.blade.php**:``````学生列表 -- 返回学生列表,即 http://localhost:8000/admin添加学生 -- 添加学生页面,即 http://localhost:8000/admin/create成绩排名 -- 查看成绩列表,即 http://localhost:8000/admin/grade下载名单 -- 下载学生信息Excel导出成绩 -- 下载学生成绩Excel添加学生,对应AdminController中的create方法:```public function create(){ $result = User::where('is_admin', 0); $count = $result->count(); return view('Admin.create', compact('count'));}```接着去创建Admin/create.blade.php:```@extends('master') {{-- 继承master模版 --}}@section('title') 添加学生@stop@section('content')@include('errors.list')read2学生信息表
{{-- 分页 --}}} render(); ?>
@if (count($users)) @foreach ($users as $user) 学号 姓名 性别 手机 班级 邮箱 操作 read1 @endforeach @else {{ $user->id }} {{ $user->name }} {{ $user->sex }} {{ $user->phone }} {{ $user->pro_class }} {{ $user->email }} 没有学生名单,请管理员添加
@endif@stop```点击添加学生:![输入图片说明](http://img2.ph.126.net/X-coZOxhAC6V5qYOaQTPGg==/6599300675750906321.jpg "在这里输入图片标题")这里我们**Form::model(obj, [options])**,传入一个新的对象$user, 这里可以查看 /vendor/illuminate/html/FormBuilder.php中的model方法,Form自动帮你填好表单,这里因为是新建,表单为空,后面你就明白了. 接着看我们的url地址, http://localhost:8000/admin,对应控制器中的store方法,@include('Admin.right_bar')添加学生
@include('errors.list'){!! Form::model($user = new \App\UsersInfo, ['url' => 'admin/', 'class' => 'form-horizontal']) !!}{!! Form::label('id', '学号:',['class' => 'control-label col-md-1']) !!}{!! Form::text('id', old('id'), ['class' => 'form-control']) !!}{!! Form::label('name', '姓名: ', ['class' => 'control-label col-md-1']) !!}{!! Form::text('name', old('name'), ['class' => 'form-control', 'required']) !!}{!! Form::close() !!}{!! Form::submit('完成,创建', ['class' => 'btn btn-success form-control']) !!}
上一篇: Java之动态代理类实现日志简单实例
下一篇: 20个常用正则表达式