Edit file File name : Brand.php Content :<?php namespace App; use Illuminate\Database\Eloquent\Model; class Brand extends Model { protected $table = "brands"; protected $fillable = ['logo', 'status']; public $timestamps = false; } Save