Welcome Guest, Not a member yet? Register   Sign In
Need suggestion on "Call to a member function save() on null"
#4

You did not created NewsModel . So thats why you are getting that error . Create Modal
Code:
<?php

namespace App\Models;

use CodeIgniter\Model;

class NewsModel extends Model
{
    protected $table = 'news';

    protected $allowedFields = ['title', 'slug', 'body'];
}
Reply


Messages In This Thread
RE: Need suggestion on "Call to a member function save() on null" - by asadali - 01-14-2022, 04:06 AM



Theme © iAndrew 2016 - Forum software by © MyBB