IncomeStyle.php 190 B

123456789101112
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class IncomeStyle extends Model
  5. {
  6. protected $table='income_style';
  7. protected $fillable = ['title','admin'];
  8. }