shihherokai

986 经验值

<?php

namespace App\Http\Middleware;

use Closure;
use Session;



class UserRole
{
    /**
     * Handle an incoming request.
     *
     * @param  \Illuminate\Http\Request  $request
     * @param  \Closure  $next
     * @return mixed
     */
    public function handle($request, Closure $next)
    {
       
        $app = \App\UserRole::all();
        return back();
        return $next($request);
    }
}

希望在Middleware使用Model,但是卻出現
syntax error, unexpected end of file, expecting function (T_FUNCTION)
想請問是不能夠在Middleware使用Model嗎?

好的,那我再嘗試看看,謝謝您

透過

class VerifyCsrfToken extends BaseVerifier
{
    protected $except = [
    '/pay/paynotify',
    ];
}

讓'/pay/paynotify',可以POST接收其他domin的資料
不過接收到的資料都會被加上 http header

POST /pay/paynotify 
HTTP/1.1 
Accept: */*
Content-Length: 463 
Content-Type: application/x-www-form-urlencoded 
Host: host.domin.com 
User-Agent: stpath 
JSONData=

想請問這樣要怎麼樣處理這些資料,才可以把這些被自動加上http header的資料刪掉

打擾了我找到問題了 APP => App

我的控制器Controller

use APP\Bulletin;
public function store(Request $request)
    {
       $bool=Bulletin::create($request->all());
       return back();
    }

我的模型MODEL

class Bulletin extends Model
{
    //
    protected $table = 'bulletin'; //指定表名
    protected $primarykey = 'id'; //指定KEY

    public $timestamps = true;

    protected $fillable = [
    'bulletin_title','bulletin_content','bulletin_date','bulletin_public','bulletin_type','bulletin_business','bulletin_response'
    ];
}

不知道為什麼會一直報 Class 'APPBulletin' not found

寫進 view 就寫死了 , 我是希望能做一個從後台透過 Editor這類型編輯器 編輯MAIL內容 然後透過 laravel 的 mail功能發送出去

了解,另外請問一下,之前看課程都是教學透過view把mail送出去
有方法直接把我的 HTML CSS 源碼寄出嗎

Mail如果要夾帶附件寄出,要怎麼操作使用呢

請問,如果我要ORM取得資料完成後,就先使用
$service->user->name
我要怎麼操做呢?

發現原來是Laravel 的報錯界面改了,才一直覺得不太對勁,謝謝解答