Error lengkapnya
LogicException in Model.php line 2702: Relationship method must return an object of type Illuminate\Database\Eloquent\Relations\Relation
Solusi
Ubah save
menjadi save()
, contoh
$po = Po::find($request->po_id);
$po->status = 'Dikirim';
$po->save;
menjadi
$po = Po::find($request->po_id);
$po->status = 'Dikirim';
$po->save();
Tulisan menarik lainnya
Laravel 5.2 HTML HelperUntuk menginstall HTML Helper di Laravel 5 jalankan perintah composer require laravelcollective/html lalu buka file…
Laravel Auth Login dengan UsernameEdit file AuthenticatesAndRegistersUsers.php yang ada di folder vendor/laravel/framework/src/Illuminate/Foundation/Auth/ public function postLogin(Request $request) { $this->validate($request, […