restore composer.json, add mysqli extension
This commit is contained in:
18
app/Models/CommentBank.php
Executable file
18
app/Models/CommentBank.php
Executable file
@@ -0,0 +1,18 @@
|
||||
<?php
|
||||
|
||||
namespace App\Models;
|
||||
|
||||
use Illuminate\Database\Eloquent\Model;
|
||||
|
||||
class CommentBank extends Model
|
||||
{
|
||||
protected $table = 'comments_bank';
|
||||
|
||||
protected $guarded = ['id'];
|
||||
|
||||
protected $casts = [
|
||||
'comment' => 'string',
|
||||
'order_id' => 'integer'
|
||||
];
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user