質問編集履歴
1
書式の改善
test
CHANGED
File without changes
|
test
CHANGED
@@ -25,6 +25,7 @@
|
|
25
25
|
|
26
26
|
日別一覧ページ
|
27
27
|
|
28
|
+
```
|
28
29
|
@extends('layouts.app')
|
29
30
|
|
30
31
|
@section('css')
|
@@ -70,15 +71,17 @@
|
|
70
71
|
</div>
|
71
72
|
|
72
73
|
@endsection
|
73
|
-
|
74
|
+
```
|
74
75
|
|
75
76
|
・出退勤コントローラー
|
76
77
|
|
78
|
+
```
|
77
79
|
public function pagination()
|
78
80
|
{
|
79
81
|
$attendances = Attendance::Paginate(5);
|
80
82
|
return view('attendance', ['attendances' => $attendances]);
|
81
83
|
}
|
84
|
+
```
|
82
85
|
|
83
86
|
ご教示いただけたら幸いです。
|
84
87
|
|