Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PHP

Database//Eloquent//Model.php laravel errror array t- string conversion

if we give table name in laravel model like array:

 protected $table = ['thoughts'];
then it will generate error.

so you should give table name as string like :

protected $table = 'thoughts';
 
PREVIOUS NEXT
Tagged: #laravel #errror #array #string #conversion
ADD COMMENT
Topic
Name
6+5 =