Icons.php 262 B

1234567891011121314151617
  1. <?php
  2. namespace App\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class Icons extends Model
  5. {
  6. //
  7. protected $table = 'icons';
  8. public static $_post_type = [
  9. 1 => '首页',
  10. 2 => '文章中心',
  11. 3 => '个人中心'
  12. ];
  13. }