-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Resized pendicon and staticon containers as requested
- Loading branch information
1 parent
b4ea0a1
commit 76431f2
Showing
4 changed files
with
117 additions
and
139 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,111 +1,113 @@ | ||
<?php | ||
|
||
class NotificationTableSeeder extends Seeder { | ||
|
||
public function run() | ||
{ | ||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'notification_type' => 'report', | ||
'report_id' => 1, | ||
'task' => 'Confirm Activity Detail Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'report_id' => 2, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Customer Budget Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'report_id' => 3, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Account Reconciliation Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'report_id' => 9, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Crop Mix Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'notification_type' => 'report', | ||
'report_id' => 1, | ||
'task' => 'Confirm Activity Detail Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'report_id' => 2, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Customer Budget Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'report_id' => 3, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Account Reconciliation Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'report_id' => 9, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Crop Mix Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'notification_type' => 'vote', | ||
'task' => 'Review Loan: Tony Stark - Glass Towers' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 5, | ||
'notification_type' => 'vote', | ||
'task' => 'Review Loan: Clint Barton - Nested Row' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'notification_type' => 'office', | ||
'task' => 'Staff Meeting on Wednesday, Dec. 10, 2014', | ||
'status' => 'acknowledged' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'notification_type' => 'office', | ||
'task' => 'Review Site' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'notification_type' => 'office', | ||
'task' => 'Report Progress' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'notification_type' => 'office', | ||
'task' => 'Enjoy life!' | ||
]); | ||
} | ||
class NotificationTableSeeder extends Seeder | ||
{ | ||
|
||
public function run() | ||
{ | ||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'notification_type' => 'report', | ||
'report_id' => 1, | ||
'task' => 'Confirm Activity Detail Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'report_id' => 2, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Customer Budget Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'report_id' => 3, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Account Reconciliation Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'report_id' => 9, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Crop Mix Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'notification_type' => 'report', | ||
'report_id' => 1, | ||
'task' => 'Confirm Activity Detail Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'report_id' => 2, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Customer Budget Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'report_id' => 3, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Account Reconciliation Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'loan_id' => 1, | ||
'report_id' => 9, | ||
'notification_type' => 'report', | ||
'task' => 'Confirm Crop Mix Report' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 1, | ||
'notification_type' => 'vote', | ||
'task' => 'Review Loan: Tony Stark - Glass Towers' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'loan_id' => 5, | ||
'notification_type' => 'vote', | ||
'task' => 'Review Loan: Clint Barton - Nested Row', | ||
'status' => 'acknowledged' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 2, | ||
'notification_type' => 'office', | ||
'task' => 'Staff Meeting on Wednesday, Dec. 10, 2014', | ||
'status' => 'acknowledged' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'notification_type' => 'office', | ||
'task' => 'Review Site' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'notification_type' => 'office', | ||
'task' => 'Report Progress' | ||
]); | ||
|
||
Notification::create([ | ||
'user_id' => 8, | ||
'notification_type' => 'office', | ||
'task' => 'Enjoy life!' | ||
]); | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters