Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TblReasonForRejection | n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||
| 1 | <?php |
| 2 | |
| 3 | namespace App\Models; |
| 4 | |
| 5 | use Illuminate\Database\Eloquent\Factories\HasFactory; |
| 6 | use Illuminate\Database\Eloquent\Model; |
| 7 | |
| 8 | class TblReasonForRejection extends Model |
| 9 | { |
| 10 | use HasFactory; |
| 11 | protected $table = 'tbl_reason_for_rejection'; |
| 12 | public $timestamps = false; |
| 13 | protected $fillable = ['company_id' ,'name', 'created_by', 'created_at']; |
| 14 | } |