PrLandPage.php 271 B

12345678910111213141516
  1. <?php
  2. namespace App\Http\Models;
  3. use Illuminate\Database\Eloquent\Model;
  4. class PrLandPage extends Model
  5. {
  6. protected $primaryKey = 'id';
  7. protected $table = 'pr_land_page';
  8. protected $casts = [
  9. 'sub_list' => 'array'
  10. ];
  11. public $guarded=[];
  12. }