第8梨到11课 - Paulyoufu/larvavel51 GitHub Wiki

解决第8节课问题

模板扩展 @extends(‘app’) @section(‘content’) @stop 视图views 所在目录 ../resources/views/yourview @foreach($articles as $article) @endforeach $article = Article::findOrFail($id); 超出范围会有提示 abort(404);显示错误页 第9节 form表单命令 composer require illuminate/html 在app/config.php 找到数providers 最后一行添加 Illuminate\Html\HtmlServiceProvider::class, 在aliases 添加 'Form' => Illuminate\Html\FormFacade::class, {!! Form::open() !!} {!! Form::text('name') !!} input {!! Form::close() !!} {!! Form::text('name',null,['class'=>'form']) !!} dd($request->all());//测试提交数据 $articles = Article::latest()->get();//将最新的文章放在最前面 dd($article->created_at->diffForHumans());//显示多少天之前 scopeYourFunctionName 在类中写方法 第11节 创建request php artisan make:request CreatEArticleRequest authorize 1发表的文章不能2来编辑 rules 放在控制器store方法里作参数Requests\CreateArticleRequest $request @if($error->any())

@foreach($errors->all() as $error)
  • {{ $error }}
  • ⚠️ **GitHub.com Fallback** ⚠️