add migration for notification. update booking confirmation

This commit is contained in:
weiweitoo
2018-07-21 14:15:42 +08:00
parent 1b874d0800
commit 81bf3ac585
7 changed files with 141 additions and 30 deletions
@@ -0,0 +1,10 @@
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class NotificationController extends Controller
{
//
}
+10
View File
@@ -0,0 +1,10 @@
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Notification extends Model
{
protected $fillable = ['detail','user_id'];
}