Psychic_role

782 经验值

windows10,没用过git和ssh。这次遇到的问题特别多,最后还有个问题是stackoverflow上说新版本vagrant1.9.3有bug要回滚到1.9.0,总算是搞定了

教程没写要在git bash里打开ssh-keygen
ssh-keygen -t rsa -C "you@homestead"
哎呀好气呀,花了一天时间折腾这个了

vagrant box add laravel/homestead /workspace/virtualBox.box
这条命令输入完,virtualBox这款软件的界面上看不到我导入的这个虚拟机
virtualBox是5.1.18版本,是软件版本太新识别不了还是别的?
cmd 消息
The box you're attempting to add already exists. Remove it before
adding it again or add it with the --force flag.

也就是我这个实际导入了,只是显示不出来?

我试了好几种方式,比如开vpn啊,下载到国外的vps啊,换别的线路转百度云或者迅雷会员,想弄到本地电脑现在花了2个小时了还没搞定,现在在下载别人一个老版本的box,也不清楚是哪个版本。laracast分享的一个1.2G的homestead.box

安装homestead的时候vagrant box add laravel/homestead后让我选择虚拟机,我已经安装好virtualbox,现在又要下载一个870MB的软件,挂vpn速度都不行怎么办呢

C:\Program Files (x86)\HashiCorp\Vagrant>vagrant box add laravel/homestead
==> box: Loading metadata for box 'laravel/homestead'

box: URL: https://atlas.hashicorp.com/laravel/homestead

This box can work with multiple providers! The providers that it
can work with are listed below. Please review the list and choose
the provider you will be working with.

1) hyperv
2) parallels
3) virtualbox
4) vmware_desktop

Enter your choice: 3
==> box: Adding box 'laravel/homestead' (v2.0.0) for provider: virtualbox

box: Downloading: https://atlas.hashicorp.com/laravel/boxes/homestead/versions/2.0.0/providers/virtualbox.box

==> box: Box download is resuming from prior download progress

box: Progress: 0% (Rate: 6876/s, Estimated time remaining: 50:33:17))9

知乎那个实战教程覆盖了这个社区系列很多地方,是不是直接放弃掉这个系列去实践知乎,这样的话对于使用5.4版本更加合适呢

还没看到这里,这星期算是把2016年之前的基础都过了一遍

5.4中用make:Auth自动生成的用户系统,然后邮件服务用的SendCloud,导致到这一篇的用法完全不一样了,不知道怎么样才能把第一封邮件发出去

我以为是不是要改动Auth里的’default‘,attempt()这个我不熟悉不知道该用它,谢谢老师

LoginController.php

<?php
namespace App\Http\Controllers\AdminAuth;

use App\Http\Controllers\Controller;
use Illuminate\Foundation\Auth\AuthenticatesUsers;

class LoginController extends Controller
{
    use AuthenticatesUsers;
    protected $redirectTo = '/admin';//修改登录后的返回路径
    protected $guard = 'admin';
    public function showLoginForm()
    {
        return view('admin.login');
    }
}

请问LoginController@login应该怎么写啊?