Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||
| TblSendgridOutboundLog | 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 TblSendgridOutboundLog extends Model |
| 9 | { |
| 10 | use HasFactory; |
| 11 | |
| 12 | protected $table = 'tbl_sendgrid_outbound_log'; |
| 13 | |
| 14 | protected $fillable = [ |
| 15 | 'function_name', |
| 16 | 'x_message_id', |
| 17 | 'request_json', |
| 18 | 'response_json', |
| 19 | ]; |
| 20 | |
| 21 | protected $casts = [ |
| 22 | 'request_json' => 'array', |
| 23 | 'response_json' => 'array', |
| 24 | ]; |
| 25 | } |