Notification.php 418 B

1234567891011121314151617181920
  1. <?php
  2. namespace App\Models;
  3. use Dcat\Admin\Traits\HasDateTimeFormatter;
  4. use Illuminate\Database\Eloquent\Factories\HasFactory;
  5. use Illuminate\Database\Eloquent\Model;
  6. use Illuminate\Database\Eloquent\SoftDeletes;
  7. /**
  8. * @method static where(string $string, $id)
  9. */
  10. class Notification extends Model
  11. {
  12. use HasFactory;
  13. use HasDateTimeFormatter;
  14. use SoftDeletes;
  15. protected $table = 'notifications';
  16. }