Share.php 204 B

123456789101112
  1. <?php
  2. namespace App\Models\Wetalk;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Share extends Model
  5. {
  6. protected $connection = 'mysql_t';
  7. protected $table='share';
  8. protected $guarded=[];
  9. }