我決定了 沒寫完就不放標題
其實還有一個重要的頁面沒講到 就是index的部分
顧名思義就是列表 清單
這次就來講這個吧(感覺文章又要短一次了)
上檔案囉~app\Http\Controllers\Web\CRUDController.php
public function index()
{
$posts = $this->CRUDRepo->index();
return view('crud.index', ['posts' => $posts]);
}
app\Repositories\CRUDRepository.php
public function index()
{
return CRUD::get();
}
resources\views\crud\index.blade.php
@extends('layouts.CRUD')
@section('title', '主頁')
@section('content')
<table class="table table-hover">
<thead>
<th>標題</th>
<th>內容</th>
</thead>
<tbody>
@foreach ($posts as $post)
<tr onclick="window.location = '{{ route('crud.show', $post->id) }}'">
<td>{{ $post->title }}</td>
<td>{{ $post->content }}</td>
</tr>
@endforeach
</tbody>
</table>
@endsection
超棒 還附超連結呢
真的很難受 這幾天跑了楓康 小7 還有全聯
都找不到服冒熱飲這種東西 難道這種東西就只有藥局有嗎...
算了 明天去找醫生看好了