Prepping for launch. Reviewed-on: #1 Co-authored-by: Paul Couture <paul@paulcouture.com> Co-committed-by: Paul Couture <paul@paulcouture.com>
		
			
				
	
	
		
			37 lines
		
	
	
		
			743 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			37 lines
		
	
	
		
			743 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace App\Models;
 | |
| 
 | |
| use Illuminate\Database\Eloquent\Factories\HasFactory;
 | |
| use Illuminate\Database\Eloquent\Model;
 | |
| use Illuminate\Database\Eloquent\SoftDeletes;
 | |
| 
 | |
| class Podcast extends Model
 | |
| {
 | |
|     use HasFactory;
 | |
| 
 | |
|     use SoftDeletes;
 | |
| 
 | |
|     protected $table = 'podcasts';
 | |
| 
 | |
|     protected $dates = ['created_at', 'updated_at', 'deleted_at', 'added_at'];
 | |
| 
 | |
|     protected $casts = [
 | |
|         'created_at' => 'datetime',
 | |
|         'updated_at' => 'datetime',
 | |
|         'deleted_at' => 'datetime',
 | |
|         'added_at'   => 'datetime',
 | |
|     ];
 | |
| 
 | |
|     public function episodes()
 | |
|     {
 | |
|         return $this->hasMany(Episode::class);
 | |
|     }
 | |
| 
 | |
|     public function artists()
 | |
|     {
 | |
|         return $this->hasManyThrough(Artist::class, Episode::class);
 | |
|     }
 | |
| 
 | |
| }
 |