Skip to content

Instantly share code, notes, and snippets.

@rawaby88
rawaby88 / modal
Created October 29, 2017 19:05
modal #php
protected $table = '';
protected $primaryKey = '';
public $incrementing = True;
public $timestamps = True;
protected $fillable = [
@rawaby88
rawaby88 / forienkey
Created October 29, 2017 19:13
forien key #migration
$table->string('appointment_id');
$table->foreign('appointment_id')->references('appointment_id')->on('appointments')->onDelete('cascade');