Set intended url:
public function showLoginForm()
{
if(!session()->has('url.intended'))
{
session(['url.intended' => url()->previous()]);
}
return view('admin.auth.login');
}
queue job command:
create job table:--
php artisan queue:table
create failed-job table:--
php artisan queue:failed-table
php artisan migrate
php artisan queue:listen --tries=3
php artisan queue:work --tries=3
php artisan queue:work --stop-when-empty
php artisan queue:work --queue=NewEventReqToAdmin --stop-when-empty
apache restart:
sudo service apache2 restart
Mailable:
php artisan make:mail DemoEmail
mail with pdf:
composer require barryvdh/laravel-dompdf
$pdf = PDF::loadView('admin.pdf.menu');
driving distance:
$key = get_setting('google-api-key');
$coordinates = file_get_contents('https://maps.googleapis.com/maps/api/distancematrix/json?units=imperial&origins=22.568658,88.429933&destinations=22.569461,88.431146&key=AIzaSyBIyEci4FBpt-so1PxCB-9cs5LPLz0kimo');
$coordinates = json_decode($coordinates);
pr($coordinates);
distance from a lat, long:
SELECT id, restaurant_name, address, ( 6371 * acos( cos( radians(@orig_lat) ) * cos( radians( latitude ) ) * cos( radians( longitude ) - radians(@orig_lon) ) + sin( radians(@orig_lat) ) * sin( radians( latitude ) ) ) ) AS distance FROM restaurants HAVING distance < 25 ORDER BY distance LIMIT 0 , 20;
array to string with keys and values:
$output = implode(' AND ', array_map(
function ($v, $k) { return sprintf("%s='%s'", $k, $v); },
$whereArr,
array_keys($whereArr)
));
Mail::send('email.auth.sponsorRegistration', $data, function($message)use($data, $pdf)
{
$message->to($data['email'], $data['name'])
->subject($data['subject'])
->attachData($pdf->output(), "invoice.pdf");
});
if (Mail::failures()) {
$this->statusdesc = "Error sending mail";
$this->statuscode = "0";
}else{
$this->statusdesc = "Message sent Succesfully";
$this->statuscode = "1";
}
$data = ['title' => 'Welcome to HDTuto.com'];
$pdf = PDF::loadView('myPDF', $data);
return $pdf->download('itsolutionstuff.pdf');
Validation:
$messages = [
'email.required' => 'Please enter email',
'email.unique' => 'Email already exist',
'password.required' => 'Please enter password',
'restaurant_name.required' => 'Please enter restaurant name',
'restaurant_address.required' => 'Please enter restaurant address',
'logo_image.required' => 'Please select logo',
'logo_image.dimensions' => 'Logo size should be matched',
'discount.required' => 'Please enter discount rate',
'terms.required' => 'Please check terms & conditions'
];
$validator = Validator::make($inputs, [
'email' => 'required|unique:users',
'password' => 'required|confirmed',
'restaurant_name' => 'required',
'restaurant_address' => 'required',
'logo_image' => 'mimes:jpeg,jpg,png|required',
'discount' => 'required',
'terms' => 'required'
], $messages);
if($validator->fails()) {
return redirect()->back()->withErrors($validator)->withInput();
exit(0);
}
------------------------------------------------------------
/**
* Use for shell exec
*
* @return string
*/
public function shellExec($id)
{
switch ($id) {
case '1':
$output = shell_exec('php ../artisan migrate');
echo "
$output
";
break;
case '2':
$output = shell_exec('php ../artisan storage:link');
echo "
$output
";
break;
default:
return false;
}
}
Route::get('shellExec/{id}', 'HomeController@shellExec');
$('#service-type').multiselect({
columns: 3,
placeholder: 'Select Services',
search: true,
header: false,
searchOptions: {
'default': 'Search Services'
},
selectAll: true
});
$('#service-type').prop("disabled", true);
$("#ticket_status_all").multiselect('reset');
My API:
https://drive.google.com/drive/folders/1uwzexfN0KXHmaW9G24w9AAQ-kNBEtzo6
// std object to array conversion:
$cuisine = json_decode(json_encode($services), true);
$data['rest_night_operational_hour'] = array_reduce($data['rest_night_operational_hour'], function($carry, $item){
$carry[] = [ 'open_day' => $item['name'], 'open_time' => $item['open_time'].'-'.$item['end_time']];
return $carry;
});
array_map(function($v) { return array_map(function($vi){ return strtolower($vi); }, $v); }, $allResNightDetails);
in_array method in associative array:
if( (!array_search(strtolower($data['res_night_name']), array_column($allResNightDetails, 'res_night_name'))) && (!array_search(strtolower($data['res_id_api']), array_column($allResNightDetails, 'res_id_api'))) )
array_walk ( $orderItemsArr, function (&$key) use($orderDetails) {
$key["order_id"] = $orderDetails->id;
});
uasort($services, function ($i, $j) {
$a = $i['id'];
$b = $j['id'];
if ($a == $b) return 0;
elseif ($a > $b) return 1;
else return -1;
});
$serviceType->slug = Str::slug($serviceType->name, '-');
C:\wamp\www\lifeplelocal\database\seeds\resNightTableSeeder.php
Google place API: https://stackoverflow.com/questions/6481334/php-code-for-adding-new-place-to-google-places-via-api
Passport::personalAccessTokensExpireIn(Carbon::now()->addDays(1));
if(!$restaurant_review->isEmpty()){
echo "33333";
}
Array rorate(last element move to first, first to second and so on):
$allDays = array_merge(array_splice($allDays, -1), $allDays);
Associative array sorting based on id:
$listItem = collect($hoursArr)->sortBy('day_id', null, true)->toArray(); // desc
$listItem = collect($hoursArr)->sortBy('day_id')->toArray(); // asc
php artisan make:controller Admin/AdminUserController --resource
php artisan make:seeder UsersTableSeeder
php artisan db:seed / php artisan db:seed --class=UsersTableSeeder
Create: php artisan make:seeder ServicesTableSeeder
Run: php artisan db:seed --class=ServicesTableSeeder
php artisan make:migration add_is_delete_to_professional_service_types_table --table=professional_service_types
php artisan make:model Models/UserProfile -m
php artisan make:request AdminServiceTypeAddRequest
composer require doctrine/dbal
$table->string('name', 50)->nullable()->change();
'name' => [
'required',
Rule::unique('professional_service_types', 'name')->where(function ($query) {
})->ignore($id, 'id'),
//Rule::unique('users', 'email_address')->ignore($user->id),
],
composer require intervention/image
/var/www/html/lifeplelocal/vendor/laravel/framework/src/Illuminate/Routing/Router.php
composer require yajra/laravel-datatables-oracle:"~8.0"
api: 1080*676
thumbnail:150*100
web: 1024*786
Bootsrap select with search box:
https://stackoverflow.com/questions/36005249/adding-search-functionality-in-select-options-using-bootstrap
--------------
$client = new GuzzleHttp\Client;
try {
$response = $client->post('http://todos.dev/oauth/token', [
'form_params' => [
'client_id' => 2,
'client_secret' => 'PASTE_CLIENT_SECRET_HERE',
'grant_type' => 'password',
'username' => 'johndoe@scotch.io',
'password' => 'secret',
'scope' => '*',
]
]);
// You'd typically save this payload in the session
$auth = json_decode( (string) $response->getBody() );
$response = $client->get('http://todos.dev/api/todos', [
'headers' => [
'Authorization' => 'Bearer '.$auth->access_token,
]
]);
$todos = json_decode( (string) $response->getBody() );
$todoList = "";
foreach ($todos as $todo) {
$todoList .= "
{$todo->task} ".($todo->done ? '' : '✅')."";
}
echo "
";
} catch (GuzzleHttp\Exception\BadResponseException $e) {
echo "Unable to retrieve access token.";
}
https://www.tutsmake.com/laravel-interview-questions-and-answers/
DFD online:
https://app.creately.com/diagram/amYyy0rFfEI/edit
sabyad.2009@gmail.com / ...82@Aa
Email and notification:
https://laravel.com/docs/5.7/notifications
Inner join in laravel eloquent relationship:
https://laravel.com/docs/5.7/eloquent-relationships
$allData = User::whereHas('userRoles', function ($query) {
$query->where([
['slug', '=', 'admin'],
//['is_active', '=', '1'],
]);
})
->where([
['is_active', '=', '1'],
])
->orderBy('id', 'desc')
->get();
$allData = User::with('userRoles')->whereHas('userRoles', function ($query) {
$query->where([
['slug', '=', 'admin'],
//['is_active', '=', '1'],
]);
})
->where([
['is_active', '=', '1'],
])
->orderBy('id', 'desc')
->get();
Add column migration:
php artisan make:migration add_email_to_schools --table=schools
make Request:
php artisan make:request AdminFamilyMemberAddRequest
-------------------------------------------------------------------------------
20191114
/var/www/html/crowdfunding/.env -- NOT REQUIRED
run migrattion files
Make model with migration:
php artisan make:model Models/RoleUser -m
/var/www/html/crowdfunding/app/Providers/AppServiceProvider.php
/var/www/html/crowdfunding/app/Providers/RouteServiceProvider.php
/var/www/html/crowdfunding/app/Models/User.php
/var/www/html/crowdfunding/routes/admin.php
/var/www/html/crowdfunding/config/auth.php
/var/www/html/crowdfunding/composer.json
All -- DONE
------------------------------------------------------------------------------------
20191115
/var/www/html/crowdfunding/app/Http/Controllers/Admin/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/resources/lang/en/auth.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Models/Role.php -- DONE
/var/www/html/crowdfunding/app/Models/RoleUser.php -- DONE
database/migrations/2019_11_15_094310_create_schools_table.php -- DONE
/var/www/html/crowdfunding/app/Models/School.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
#b8cff5!important;
-----------------------------------------------------------------------------------
20191118
remove passport: -- DONE
user.php, composer.json, authServiceProvider.php, auth.php, app.php -- DONE
/var/www/html/crowdfunding/composer.json -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Providers/AuthServiceProvider.php -- DONE
/var/www/html/crowdfunding/config/auth.php -- DONE
/var/www/html/crowdfunding/config/app.php -- DONE
install :
composer require laravel/passport "^7.3"
php artisan migrate, php artisan passport:install - Alldone -- DONE
------------------------------------------------------------------------------------
20191119
/var/www/html/crowdfunding/app/Http/Controllers/Admin/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/app/Models/UserProfile.php -- DONE
------------------------------------------------------------------------------------
20191120
crowdfunding/database/migrations/2019_11_15_094310_create_schools_table.php -- DONE
crowdfunding/database/migrations/2019_11_20_063253_create_user_profiles_table.php -- DONE
/var/www/html/crowdfunding/app/Models/UserProfile.php -- DONE
------------------------------------------------------------------------------------
20191121
/var/www/html/crowdfunding/.env -- NOT REQUIRED
/var/www/html/crowdfunding/app/Notifications/PasswordReset.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/header.blade.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/message.blade.php -- DONE
/var/www/html/crowdfunding/app/Notifications/EmailVerify.php -- DONE
/var/www/html/crowdfunding/app/Notifications/EmailVerify.php -- DONE
/var/www/html/crowdfunding/config/auth.php -- NOT REQUIRED
/var/www/html/crowdfunding/config/auth.php -- NOT REQUIRED
/var/www/html/crowdfunding/app/Providers/RouteServiceProvider.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
/var/www/html/crowdfunding/routes/sponsorApi.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/lang/en/auth.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/Auth/LoginController.php -- DONE
------------------------------------------------------------------------------------
20191122
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/database/seeds/UserRoleTableSeeder.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/restaurant-owner-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
crowdfunding/resources/views/admin/users/event-organizer-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/database/seeds/UserRoleTableSeeder.php -- DONE
crowdfunding/database/migrations/2019_11_14_114358_create_roles_table.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/role-list.blade.php -- DONE
------------------------------------------------------------------------------------
20191125
------------------------------------------------------------------------------------
20191126
/var/www/html/crowdfunding/app/Models/School.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateEventSchool.php -- DONE
/var/www/html/crowdfunding/app/Models/Campaign.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateCampaignEvent.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateEventOrganizer.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderItem.php -- DONE
/var/www/html/crowdfunding/app/Models/Menu.php -- DONE
/var/www/html/crowdfunding/app/Models/MenuAddOn.php -- DONE
/var/www/html/crowdfunding/app/Models/Badge.php -- DONE
migrations/2019_11_26_102127_add_email_to_schools.php -- DONE
migrations/2019_11_26_104620_create_associate_event_schools_table.php -- DONE
migrations/2019_11_26_105518_create_campaigns_table.php -- DONE
migrations/2019_11_26_110157_create_events_table.php -- DONE
migrations/2019_11_26_113653_create_associate_campaign_events_table.php -- DONE
migrations/2019_11_26_114126_add_events_to_associate_event_schools.php -- DONE
migrations/2019_11_26_114337_create_associate_event_organizers_table.php -- DONE
migrations/2019_11_26_125243_create_restaurants_table.php -- DONE
migrations/2019_11_26_132049_create_orders_table.php -- DONE
migrations/2019_11_26_133511_add_event_number_to_events.php -- DONE
migrations/2019_11_26_133022_create_order_items_table.php -- DONE
migrations/2019_11_26_133816_create_menus_table.php -- DONE
migrations/2019_11_26_134658_create_menu_add_ons_table.php -- DONE
migrations/2019_11_26_135402_add_menu_to_order_items.php -- DONE
migrations/2019_11_26_135838_create_badges_table.php -- DONE
All -- DONE
-------------------------------------------------------------------------------------
20191127
/var/www/html/crowdfunding/resources/views/admin/users/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/restaurant-owner-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/event-organizer-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminUserEditRequest.php -- DONE
database/migrations/2019_11_27_100630_add_country_code_to_users_table.php -- DONE
/var/www/html/crowdfunding/public/js/custom.admin.js -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminUserEditRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/edit.blade.php -- DONE
composer require intervention/image -- DONE
/var/www/html/crowdfunding/config/app.php -- DONE
/var/www/html/crowdfunding/app/Models/UserProfile.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/event-organizer-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/restaurant-owner-list.blade.php -- DONE
crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
----------------------------------------------------------------------------------------
20191128
crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/styles.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/scripts.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/scripts.blade.php -- DONE
database/migrations/2019_11_28_095621_create_associate_school_users_table.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateSchoolUser.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminFamilyMemberAddRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/add.blade.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminUserEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Models/School.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateSchoolUser.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminFamilyMemberEditRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/show.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
send email to family member during registration -------- DONE
-------------------------------------------------------------------------------------
20191129
crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/header.blade.php -- DONE
/var/www/html/crowdfunding/.env -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/layouts/email.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/header.blade.php -- DONE
resources/views/email/auth/familyMemberRegistration.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/layouts/email.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Mail/FamilyMemberRegistration.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminEventOrganizerEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantOwnerEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminAdminEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminSponsorEditRequest.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-show.blade.php -- DONE
email help:
https://code.tutsplus.com/tutorials/how-to-send-emails-in-laravel--cms-30046
https://www.phpflow.com/php/how-to-send-email-into-laravel-5-7-using-smtp/
https://www.tutsmake.com/send-email-in-laravel-mailable-example/
------------------------------------------------------------------------------------
20191202
/var/www/html/crowdfunding/resources/views/admin/partials/scripts.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/dashboard/index.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminSponsorAddRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/sponsorRegistration.blade.php -- DONE
/var/www/html/crowdfunding/app/Mail/Auth/SponsorRegistration.php -- DONE
/var/www/html/crowdfunding/app/Mail/Auth/FamilyMemberRegistration.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminSchoolController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
------------------------------------------------------------------------------------
20191203
ALTER TABLE `schools` CHANGE `zip` `zip_code` VARCHAR(255) CHARACTER SET -- DONE
utf8mb4 COLLATE utf8mb4_unicode_ci NOT NULL; -- DONE
ALTER TABLE `schools` CHANGE `phone_code` `country_code` VARCHAR(255) -- DONE
CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci NULL DEFAULT NULL; -- DONE
database/migrations/2019_11_15_094310_create_schools_table.php -- DONE
/var/www/html/crowdfunding/app/Models/School.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-list.blade.php -- DONE
database/migrations/2019_12_03_101926_add_school_id_schools_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminSchoolEditRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminSchoolEditRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminSchoolController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/schools/school-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
-----------------------
As of now, we need frontend developer for the following task:
1. make restaurant owner's registration page,
2. Email body structure with header and footer
3. invoice structure
And kindly, add zip code as seperate field(apart from address)
for all scenario where address field exists
change school to charitable organization with filter -- DONE
database/migrations/2019_12_03_143204_create_charitable_organizations_table.php -- DONE
/var/www/html/crowdfunding/app/Models/CharitableOrganization.php -- DONE
-----------------------------------------------------------------------------------
20191204
/var/www/html/crowdfunding/app/Models/AssociateEventCharitibleOrganization.php -- DONE
2019_12_04_135037_create_associate_event_charitable_organizations_table.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateEventCharitableOrganization.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateEventCharitableOrganization.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateCharitableOrganizationUser.php -- DONE
/var/www/html/crowdfunding/app/Models/CharitableOrganization.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
migrations/2019_12_04_141433_create_associate_charitable_organization_users_table.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateCharitableOrganizationUser.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
------------------------------------------------------------------------------------
20191205
/var/www/html/crowdfunding/resources/views/admin/partials/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
associate_charitable_organization_users -- DONE
associate_event_charitable_organizations -- DONE
badges -- DONE
charitable_organizations -- DONE
events -- DONE
menus -- DONE
menu_add_ons -- DONE
orders -- DONE
order_items -- DONE
restaurants -- DONE
roles -- DONE
role_users -- DONE
users -- DONE
user_device_tokens -- DONE
user_profiles -- DONE
associate_event_restaurants -- DONE
restaurant_order_payments -- DONE
restaurant_availabilities -- DONE
associate_event_users -- DONE
sponsor_logo_packages -- DONE
sponsor_logos -- DONE
sponsor_logo_payments -- DONE
cms -- DONE
site_settings -- DONE
--------------------------------
events, -------------------------------------------
charitable_organizations, -------------------------
restaurants, --------------------------------------
users, --------------------------------------------
roles, --------------------------------------------
role_users, ---------------------------------------
user_device_tokens, -------------------------------
user_profiles, ------------------------------------
badges, -------------------------------------------
menus, --------------------------------------------
menu_add_ons, -------------------------------------
orders, -------------------------------------------
order_items, --------------------------------------
associate_event_users, ----------------------------
associate_event_charitable_organizations, ---------
associate_event_restaurants, ----------------------
associate_charitable_organization_users, ----------
associate_restaurant_users, -----------------------
order_payments, -----------------------------------
restaurant_availabilities, ------------------------
sponsor_logo_packages, ----------------------------
sponsor_logos,
sponsor_logo_payments,
cms, ----------------------------------------------
site_settings, ------------------------------------
payment_distribution
26
C:\wamp64\www\crowdfunding\app\Models\UserDeviceToken.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\UserProfile.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\Event.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\CharitableOrganization.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\Restaurant.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\Order.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\OrderItem.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\AssociateEventUser.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\AssociateEventRestaurant.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\AssociateRestaurantUser.php -- DONE
database\migrations\2014_10_12_000000_create_users_table.php -- DONE
database\migrations\2019_11_14_133702_create_user_device_tokens_table.php -- DONE
database\migrations\2019_11_26_110157_create_events_table.php -- DONE
database\migrations\2019_12_03_143204_create_charitable_organizations_table.php -- DONE
database\migrations\2019_11_26_125243_create_restaurants_table.php -- DONE
database\migrations\2019_11_26_132049_create_orders_table.php -- DONE
database\migrations\2019_11_26_133022_create_order_items_table.php -- DONE
database\migrations\2019_12_08_174607_create_associate_event_users_table.php -- DONE
database\migrations\2019_12_08_175301_create_associate_event_restaurants_table.php -- DONE
database\migrations\2019_12_08_180252_create_associate_restaurant_users_table.php -- DONE
------------------------------------------------------------------------------------------------------
20191206
/var/www/html/crowdfunding/app/Models/CharitableOrganization.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/event-organizer-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Exceptions/Handler.php -- DONE
401, 403, 404, 419, 429, 500, 503
\Illuminate\Auth\AuthenticationException::class,
\Illuminate\Auth\Access\AuthorizationException::class,
\Symfony\Component\HttpKernel\Exception\HttpException::class,
\Illuminate\Database\Eloquent\ModelNotFoundException::class,
\Illuminate\Session\TokenMismatchException::class,
\Illuminate\Validation\ValidationException::class,
/var/www/html/crowdfunding/app/Models/User.php -- DONE
database/migrations/2019_12_03_143204_create_charitable_organizations_table.php -- DONE
------------------------------------------------------------------------------------------------------
20191210
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Mail/Auth/FamilyMemberRegistration.php -- DONE
/var/www/html/crowdfunding/app/Mail/Auth/FamilyMemberRegistration.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-show.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderItem.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20191211
/var/www/html/crowdfunding/resources/views/admin/dashboard/index.blade.php -- DONE
/var/www/html/crowdfunding/app/Exceptions/Handler.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/role-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/event-organizer-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
/var/www/html/crowdfunding/database/migrations/2019_12_11_123418_create_site_settings_table.php -- DONE
/var/www/html/crowdfunding/app/Models/SiteSetting.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/content/index.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/content/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- N.R
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminSettingController.php -- DONE
/var/www/html/crowdfunding/database/migrations/2019_12_11_130958_create_cms_table.php -- DONE
/var/www/html/crowdfunding/app/Models/Cms.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/cms/edit.blade.php -- DONE
/var/www/html/crowdfunding/docs -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/footer.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20191212
composer require barryvdh/laravel-dompdf -- DONE
/var/www/html/crowdfunding/config/app.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/pdf/menu.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/sponsorRegistration.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/familyMemberRegistration.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/Auth/ResetPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/Auth/VerificationController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorSettingController.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/SponsorRedirectIfAuthenticated.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/SponsorRedirectIfNotAuthenticated.php -- DONE
/var/www/html/crowdfunding/app/Http/Kernel.php -- DONE
/var/www/html/crowdfunding/config/auth.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/layouts/sponsor.blade.php - also rename -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/layouts/sponsor_auth.blade.php - also rename -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/auth/login.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/auth/passwords/email.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorDashboardController.php -- DONE
/var/www/html/crowdfunding/resources/lang/en/auth.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/dashboard/index.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorDashboardController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorDashboardController.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/layouts/sponsor_auth.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/scripts.blade.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/dashboard/index.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/auth/passwords/email.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/auth/login.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/SponsorProfileEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/app/Exceptions/Handler.php -- DONE
------------------------------------------------------------------------------------------------------
20191213
/var/www/html/crowdfunding/database/migrations/2019_12_13_061703_add_state_table.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Models/UserProfile.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/event-organizer-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/event-organizer-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/event-organizer-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-show.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
------------------------------------------------------------------------------------------------------
20191217
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-edit.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantOwnerAddRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-add.blade.php -- DONE
php artisan make:mail Auth/RestaurantOwnerRegistration -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/restaurantOwnerRegistration.blade.php -- DONE
/var/www/html/crowdfunding/app/Mail/Auth/RestaurantOwnerRegistration.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/sponsorRegistration.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/familyMemberRegistration.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCharitableOrganizationController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/public/css/custom.admin.css -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-show.blade.php -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-show.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCharitableOrganizationController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20191218
/var/www/html/crowdfunding/public/js/custom.admin.js -- DONE
/var/www/html/crowdfunding/public/css/custom.admin.css -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantEditRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantEditRequest.php -- DONE
/var/www/html/crowdfunding/database/migrations/2019_12_18_143909_add_change_discount_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
install doctrine package -- DONE
------------------------------------------------------------------------------------------------------
20191219
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/public/css/custom.admin.css -- DONE
/var/www/html/crowdfunding/app/Models/AssociateRestaurantUser.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
database/migrations/2019_12_19_141243_add_discount_rate_to_restaurants_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20191220
/var/www/html/crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
Need to discuss with Dipa about admin commission in restaurant edit section to show or not now -- DONE
------------------------------------------------------------------------------------------------------
20191223
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
database/migrations/2019_12_23_071239_add_banner_image_to_events_table.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminEventController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/events/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminEventController.php -- DONE
------------------------------------------------------------------------------------------------------
20191224
/var/www/html/crowdfunding/resources/views/admin/events/list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/events/show.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminEventController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/events/list.blade.php -- DONE
all day pickup filter -- DONE
------------------------------------------------------------------------------------------------------
20191226
/var/www/html/crowdfunding/resources/views/admin/events/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminEventController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/organizations.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateEventCharitableOrganization.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateEventRestaurant.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateRestaurantUser.php -- N.R
/var/www/html/crowdfunding/app/Models/AssociateEventRestaurant.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/organizations.blade.php -- DONE
restaurantAssociateEvent.getEvent.eventAssociateCharitableOrganization.getCharitableOrganization -- N.R
------------------------------------------------------------------------------------------------------
20191227
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/config/app.php -- N.R
/var/www/html/crowdfunding/app/Services/RestaurantServices.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/organizations.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/organizations.blade.php -- DONE
/var/www/html/crowdfunding/public/css/custom.admin.css -- DONE
------------------------------------------------------------------------------------------------------
20191230
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/regForm.blade.php -- DONE
php artisan make:mail Restaurant/RestaurantRegistrationForm -- DONE
/var/www/html/crowdfunding/app/Mail/Auth/RestaurantRegistrationForm.php -- N.R
/var/www/html/crowdfunding/app/Mail/Restaurant/RestaurantRegistrationForm.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/email/restaurant/restaurantRegistrationForm.blade.php -- DONE
/var/www/html/crowdfunding/database/migrations/2019_12_30_115127_create_temporary_tables_table.php -- DONE
/var/www/html/crowdfunding/app/Models/TemporaryTable.php -- DONE
/var/www/html/crowdfunding/resources/views/email/restaurant/restaurantRegistrationForm.blade.php -- DONE
/var/www/html/crowdfunding/app/Services/DefaultServices.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/regForm.blade.php -- DONE
/var/www/html/crowdfunding/app/Services/DefaultServices.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/RestaurantOwnerRedirectIfNotAuthenticated.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwner.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/RestaurantOwnerRedirectIfAuthenticated.php -- DONE
/var/www/html/crowdfunding/app/Http/Kernel.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
------------------------------------------------------------------------------------------------------
20191231
/var/www/html/crowdfunding/resources/views/restaurantOwner/layouts/restaurantOwner.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/layouts/restaurantOwner_auth.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/layouts/sponsor_auth.blade.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwner.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200102
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/routes/web.php -- DONE
/var/www/html/crowdfunding/resources/views/default/cms/cms.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
/var/www/html/crowdfunding/public/css/custom.frontend.css -- DONE
/var/www/html/crowdfunding/public/js/custom.frontend.js -- DONE
/var/www/html/crowdfunding/resources/views/default/cms/cms.blade.php -- DONE
/var/www/html/crowdfunding/public/css/custom.frontend.css -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/RestaurantOwnerAddRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/RestaurantOwnerAddRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/RestaurantOwnerAddRequest.php -- DONE
------------------------------------------------------------------------------------------------------
20200103
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/RestaurantOwnerAddRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Helpers/CommonHelper.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/regForm.blade.php -- DONE
/var/www/html/crowdfunding/app/Services/DefaultServices.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/config/mail.php -- DONE
------------------------------------------------------------------------------------------------------
20200104
crowdfunding\app\Http\Controllers\RestaurantOwner\RestaurantOwnerDashboardController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\RestaurantOwner\Auth\ForgotPasswordController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\RestaurantOwner\Auth\LoginController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\RestaurantOwner\Auth\ResetPasswordController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\RestaurantOwner\Auth\VerificationController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\DefaultController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\BaseController.php d -- DONE
C:\wamp64\www\crowdfunding\routes\eventOrganizerApi.php d -- DONE
C:\wamp64\www\crowdfunding\app\Providers\RouteServiceProvider.php d -- DONE
C:\wamp64\www\crowdfunding\.env -- N.R
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\BaseController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Middleware\GuestApi.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Middleware\ApiTokenValidation.php d -- DONE
C:\wamp64\www\crowdfunding\app\Services\Api\AuthTokenService.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Middleware\AuthApi.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Kernel.php d -- DONE
C:\wamp64\www\crowdfunding\routes\eventOrganizerApi.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\BaseController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\DefaultController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\v1\EventOrganizer\Auth\AuthController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Middleware\GuestApi.php d -- DONE
php artisan passport:install d -- DONE
C:\wamp64\www\crowdfunding\app\Services\Api\AuthTokenService.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\DefaultController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\v1\EventOrganizer\Auth\AuthController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Services\Api\AuthTokenService.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\v1\EventOrganizer\Auth\AuthController.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Middleware\AuthApi.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Middleware\ApiTokenValidation.php d -- DONE
C:\wamp64\www\crowdfunding\routes\eventOrganizerApi.php d -- DONE
https://medium.com/techcompose/create-rest-api-in-laravel-with-authentication-using-passport-133a1678a876
------------------------------------------------------------------------------------------------------
20200106
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/VerificationController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
------------------------------------------------------------------------------------------------------
20200107
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Services/Api/AuthTokenService.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/BaseController.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateRestaurantUser.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
php artisan make:mail Api/Auth/ApiUserEmailVerification -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Mail/Api/Auth/ApiUserEmailVerification.php -- DONE
/var/www/html/crowdfunding/resources/views/email/api/auth/apiUserEmailVerification.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200108
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\v1\EventOrganizer\Auth\AuthController.php d -- DONE
C:\wamp64\www\crowdfunding\resources\views\default\cms\cms.blade.php d -- DONE
C:\wamp64\www\crowdfunding\resources\views\default\email\emailverified.blade.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\DefaultController.php d -- DONE
C:\wamp64\www\crowdfunding\resources\views\default\layouts\default_auth.blade.php d -- DONE
C:\wamp64\www\crowdfunding\routes\web.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\DefaultController.php d -- DONE
C:\wamp64\www\crowdfunding\resources\views\default\email\emailverified.blade.php d -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\v1\RestaurantOwner\Auth\AuthController.php d -- DONE
js/custom.restaurantOwner.js -- missing -- DONE
------------------------------------------------------------------------------------------------------
20200109
/var/www/html/crowdfunding/public/js/custom.restaurantOwner.js -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/resources/views/default/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/Auth/ForgotPasswordController.php -- DONE
php artisan make:mail Api/Auth/ApiUserForgetPassword -- DONE
/var/www/html/crowdfunding/app/Mail/Api/Auth/ApiUserForgetPassword.php -- DONE
/var/www/html/crowdfunding/resources/views/email/api/auth/apiUserForgetPassword.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
/var/www/html/crowdfunding/routes/web.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
------------------------------------------------------------------------------------------------------
20200110
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- N.R
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/apiUserEmailVerification.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/api/auth/apiUserForgetPassword.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/RestaurantOwnerAddRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/email/restaurant/restaurantRegistrationForm.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/AuthApi.php -- DONE
/var/www/html/crowdfunding/app/Exceptions/Handler.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/ApiTokenValidation.php -- DONE
/var/www/html/crowdfunding/app/Services/Api/AuthTokenService.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/events/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
------------------------------------------------------------------------------------------------------
20200113
/var/www/html/crowdfunding/config/mail.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/SchoolController.php -- DONE
------------------------------------------------------------------------------------------------------
20200114
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
migrations/2020_01_14_071443_set_organization__i_d__unique_to_charitable_organizations_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/BaseController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/SchoolController.php -- DONE
/var/www/html/crowdfunding/app/Http/Kernel.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/EventOrganizerRedirectIfNotAuthenticated.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/EventOrganizerRedirectIfAuthenticated.php -- DONE
app/Http/Controllers/API/v1/EventOrganizer/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizer.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/EventOrganizer/Auth/ResetPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Models/User.php -- DONE
/var/www/html/crowdfunding/app/Notifications/PasswordReset.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/layouts/eventOrganizer_auth.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/layouts/eventOrganizer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/auth/passwords/reset.blade.php -- DONE
/app/Http/Controllers/EventOrganizer/EventOrganizerDashboardController.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/auth/passwords/resetMessage.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/auth/passwords/resetMessage.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/EventOrganizer/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/EventOrganizer/Auth/VerificationController.php -- DONE
/var/www/html/crowdfunding/public/css/custom.eventOrganizer.css -- DONE
/var/www/html/crowdfunding/public/js/custom.eventOrganizer.js -- DONE
app/Http/Controllers/API/v1/EventOrganizer/Auth/ForgotPasswordController.php -- DONE
app/Http/Controllers/API/v1/RestaurantOwner/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizer.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/ResetPasswordController.php -- DONE
/app/Http/Controllers/RestaurantOwner/RestaurantOwnerDashboardController.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/partials/meta_auth.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/partials/scripts.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/eventOrganizer/partials/scripts_auth.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/partials/styles.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/partials/scripts_auth.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/passwords/resetMessage.blade.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwner.php -- DONE
/var/www/html/crowdfunding/app/Notifications/PasswordReset.php -- DONE
------------------------------------------------------------------------------------------------------
20200115
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/BaseController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
app/Http/Controllers/API/v1/FamilyMember/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/FamilyMemberRedirectIfNotAuthenticated.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/FamilyMemberRedirectIfAuthenticated.php -- DONE
/var/www/html/crowdfunding/app/Http/Kernel.php -- DONE
/var/www/html/crowdfunding/routes/familyMember.php -- DONE
/var/www/html/crowdfunding/routes/familyMemberApi.php -- N.R
/var/www/html/crowdfunding/app/Http/Controllers/FamilyMember/Auth/ResetPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/FamilyMember/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/FamilyMember/Auth/LoginController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/FamilyMember/FamilyMemberDashboardController.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/layouts/familyMember.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/layouts/familyMember_auth.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/partials/meta.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/partials/scripts.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/partials/styles.blade.php -- DONE
/var/www/html/crowdfunding/public/css/custom.familyMember.css -- DONE
/var/www/html/crowdfunding/public/js/custom.familyMember.js -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/routes/familyMember.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/auth/passwords/resetMessage.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/familyMember/auth/passwords/reset.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/SchoolController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/SchoolController.php -- DONE
/var/www/html/crowdfunding/resources/views/default/email/emailverified.blade.php -- DONE
email verify message cross button -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantEditRequest.php -- DONE
------------------------------------------------------------------------------------------------------
20200116
/var/www/html/crowdfunding/resources/views/restaurantOwner/auth/register.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/RestaurantOwner/Auth/RegisterController.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/RestaurantOwnerAddRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/AuthApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
------------------------------------------------------------------------------------------------------
20200117
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/fetchRegApi.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200120
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/fetchRegApi.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Services/ZomatoApiServices.php -- DONE
------------------------------------------------------------------------------------------------------
20200121
C:\wamp64\www\crowdfunding\database\migrations\2020_01_21_130009_create_temp_campaigns_table.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\TempCampaign.php -- DONE
C:\wamp64\www\crowdfunding\routes\eventOrganizerApi.php -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\API\v1\EventOrganizer\EventController.php -- DONE
------------------------------------------------------------------------------------------------------
20200122
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Services/RestaurantServices.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
------------------------------------------------------------------------------------------------------
20200123
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantEditRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminRestaurantEditRequest.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Restaurant banner image size', 'restaurant-banner-image-size', '2500x2000', 'Width: 2500px, Height: 2000px', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
------------------------------------------------------------------------------------------------------
20200125
C:\wamp64\www\crowdfunding\database\migrations\2020_01_25_062138_update_google_place_id_table.php -- DONE
C:\wamp64\www\crowdfunding\database\migrations\2020_01_25_062701_add_google_place_id_table.php -- DONE
C:\wamp64\www\crowdfunding\app\Models\Restaurant.php -- DONE
C:\wamp64\www\crowdfunding\app\Http\Controllers\Admin\AdminRestaurantController.php -- DONE
C:\wamp64\www\crowdfunding\resources\views\admin\partials\sidebar.blade.php -- ADDED -- DONE
C:\wamp64\www\crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- ADDED -- DONE
C:\wamp64\www\crowdfunding/routes/admin.php -- ADDED -- DONE
C:\wamp64\www\crowdfunding\database\migrations\2020_01_26_021021_create_campaigns_table.php -- N.R
C:\wamp64\www\crowdfunding\app\Models\Campaign.php -- N.R
C:\wamp64\www\crowdfunding\app\Models\Event.php -- N.R
{{ url()->previous() }} -- N.R
crowdfunding/resources/views/admin/restaurants/organizations.blade.php -- ADDED -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-show.blade.php -- ADDED -- DONE
crowdfunding/app/Services/CampaignServices.php -- ADDED -- DONE
crowdfunding/routes/admin.php -- ADDED -- DONE
crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- ADDED -- DONE
crowdfunding/app/Repositories/CampaignRepository.php -- ADDED -- DONE
crowdfunding/resources/views/admin/campaigns/list.blade.php -- ADDED -- DONE
------------------------------------------------------------------------------------------------------
20200127
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'User image size', 'user-image-size', '2500x2000', 'Width: 2500px, Height: 2000px', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
------------------------------------------------------------------------------------------------------
20200128
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
migrations/2020_01_28_135925_add_is_send_by_admin_to_associate_event_restaurants_table.php -- DONE
/var/www/html/crowdfunding/app/Services/DefaultServices.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Event banner image size', 'event-banner-image-size', '2500x2000', 'Width: 2500px, Height: 2000px', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
------------------------------------------------------------------------------------------------------
20200129
php artisan make:mail Api/Event/ApiEventRegistrationEmailToAdmin -- DONE
/var/www/html/crowdfunding/resources/views/email/layouts/email.blade.php -- DONE
/var/www/html/crowdfunding/app/Services/UserService.php -- DONE
/var/www/html/crowdfunding/app/Repositories/UserRepository.php -- DONE
/var/www/html/crowdfunding/.env -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
php artisan make:job SendEventRegistrationEmailToAdminJob -- DONE
/var/www/html/crowdfunding/app/Jobs/SendEventRegistrationEmailToAdminJob.php -- DONE
/var/www/html/crowdfunding/app/Mail/Api/Event/ApiEventRegistrationEmailToAdmin.php -- DONE
/var/www/html/crowdfunding/resources/views/email/event/eventAddEmailToAdmin.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200130
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/admin-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/event-organizer-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/restaurant-owner-add.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Console/Kernel.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
*** campaign: organizer add restaurants, after final summission admin will get notification -- DONE
/var/www/html/crowdfunding/app/Jobs/SendEventRegistrationEmailToAdminJob.php -- DONE
/var/www/html/crowdfunding/resources/views/email/event/eventAddEmailToAdmin.blade.php -- DONE
/var/www/html/crowdfunding/app/Mail/Api/Event/ApiEventRegistrationEmailToAdmin.php -- DONE
------------------------------------------------------------------------------------------------------
20200131
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Jobs/SendEventRegistrationEmailToAdminJob.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/resources/views/email/event/eventAddEmailToAdmin.blade.php -- DONE
/var/www/html/crowdfunding/app/Mail/Api/Event/ApiEventRegistrationEmailToAdmin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/campaigns/restaurantMap.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/campaigns/restaurantMap.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/campaigns/restaurantMap.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
------------------------------------------------------------------------------------------------------
20200201
php artisan make:mail Restaurant\SendInterestRequest -- DONE
C:\wamp64\www\crowdfunding/resources/views/admin/campaigns/restaurantMap.blade.php -- DONE
C:\wamp64\www\crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:\wamp64\www\crowdfunding/resources/views/email/restaurant/sendInterestRequest.blade.php -- DONE
C:\wamp64\www\crowdfunding/app/Mail/Restaurant/SendInterestRequest.php -- DONE
C:\wamp64\www\crowdfunding/app/Http/Middleware/AdminRedirectIfNotAuthenticated.php -- DONE
C:\wamp64\www\crowdfunding/resources/views/email/restaurant/sendInterestRequest.blade.php -- DONE
php artisan queue:table -- N.R
php artisan queue:failed-table -- N.R
php artisan migrate -- N.R
php artisan queue:work --stop-when-empty -- N.R
php artisan queue:work --queue=NewEventReqToAdmin --stop-when-empty -- PENDING
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- check cron
C:/wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminSettingController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
C:/wamp64/www/crowdfunding/database/migrations/2020_02_01_202916_create_menu_categories_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/MenuCategory.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Menu.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/MenuAddOnCategory.php -- DONE
C:/wamp64/www/crowdfunding/database/migrations/2020_02_01_204204_add_menu_category_id_to_menus.php -- DONE
/crowdfunding/database/migrations/2020_02_01_212203_create_menu_add_on_categories_table.php -- DONE
crowdfunding/database/migrations/2020_02_01_213552_add_menu_add_on_category_id_to_menu_add_ons.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/MenuAddOn.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Event.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
C:/wamp64/www/crowdfunding/routes/eventOrganizerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Event.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMemberApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/RestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwnerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/RestaurantController.php -- DONE
------------------------------------------------------------------------------------------------------
20200203
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/database/migrations/2020_02_03_121348_add_admin_commission_to_menus_table.php -- DONE
/database/migrations/2020_02_03_122319_add_admin_commission_to_menu_add_ons_table.php -- DONE
/var/www/html/crowdfunding/app/Models/MenuAddOn.php -- DONE
/var/www/html/crowdfunding/app/Models/Menu.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Services/RestaurantServices.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Models/Menu.php -- DONE
/var/www/html/crowdfunding/app/Models/MenuAddOnCategory.php -- DONE
/var/www/html/crowdfunding/app/Services/RestaurantServices.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
/var/www/html/crowdfunding/app/Models/MenuCategory.php -- DONE
database/migrations/2020_02_04_135329_add_food_preparation_time_to_menus_table.php -- DONE
/var/www/html/crowdfunding/app/Models/Menu.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
------------------------------------------------------------------------------------------------------
20200205
crowdfunding/app/Models/User.php -- ADDED -- DONE
crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- ADDED -- DONE
crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/SchoolController.php -- ADDED -- DONE
crowdfunding/routes/eventOrganizerApi.php -- ADDED -- DONE
/var/www/html/crowdfunding/database/migrations/2019_11_26_110157_create_events_table.php -- DONE
ALTER TABLE `events` CHANGE `target_fund` `target_fund` DOUBLE NOT NULL DEFAULT '0.00'; -- DONE
Get category List, Add dish category, Add Dish, Add addons category, Add item on Addons category, -- DONE
Get Menu list APIs -- DONE
--------------------------------------------------------------------------------
NEARBY EVENTS BY RESTAURANT - PENDING*********:
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Nearby Campaigns range', 'nearby-campaigns-range', '10', '10km', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
UPDATE `site_settings` SET `setting_name` = 'Nearby Campaigns range(KM)' -- DONE
WHERE `site_settings`.`id` = 11; -- DONE
/var/www/html/crowdfunding/app/Repositories/CampaignRepository.php -- N.R
/var/www/html/crowdfunding/app/Services/EventServices.php -- DONE
/var/www/html/crowdfunding/app/Repositories/EventRepository.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
------------------------------------------------------------------------------------------------------
20200206
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/RestaurantController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Models/CharitableOrganization.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/EventRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
------------------------------------------------------------------------------------------------------
20200207
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/campaigns/show.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/events/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminEventController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/events/show.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
------------------------------------------------------------------------------------------------------
20200208-09
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/restaurantMap.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/show.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200210
2020_02_10_092825_add_is_individual_commission_to_restaurants_table.php -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
composer require usmanhalalit/laracsv:^2.0 -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200211
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/app/Services/RestaurantServices.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
migrations/2020_02_11_100451_change_organization__i_d_to_charitable_organizations_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminSettingController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/content/edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/MenuController.php -- DONE
maatwebsite package install -- DONE
/var/www/html/crowdfunding/routes/admin.php -- ADDED -- DONE
crowdfunding/app/Http/Controllers/Admin/AdminCharitableOrganizationController.php -- ADDED -- DONE
/var/www/html/crowdfunding/resources/views/admin/charitableOrganizations/import.blade.php -- ADDED -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminEventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/show.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200213
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
composer require maatwebsite/excel -- DONE
crowdfunding/resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminImportOrganizationRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/charitableOrganizations/import.blade.php -- DONE
migrations/2020_02_13_133553_add_is_import_to_charitable_organizations_table.php -- DONE
/var/www/html/crowdfunding/app/Models/CharitableOrganization.php -- DONE
/var/www/html/crowdfunding/app/Imports/charitableImport.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCharitableOrganizationController.php -- DONE
/var/www/html/crowdfunding/app/Imports/charitableImport.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminImportOrganizationRequest.php -- DONE
------------------------------------------------------------------------------------------------------
20200214
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Organization upload file size(MB)', 'organization-import-file-size', '2', 'You can upload a file with max. 2MB.', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- N.R
/var/www/html/crowdfunding/app/Exceptions/Handler.php
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCharitableOrganizationController.php -- DONE
/var/www/html/crowdfunding/app/Imports/charitableImport.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/charitableOrganizations/import.blade.php -- DONE
migrations/2020_02_14_110240_change_email_to_charitable_organizations_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Exports/RestaurantExport.php -- DONE
admin commision in admin panel and restaurant edit page -- need checkbox -- DONE
/var/www/html/crowdfunding/composer.json -- DONE
/var/www/html/crowdfunding/resources/views/admin/charitableOrganizations/import.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200217
crowdfunding/database/migrations/2020_02_17_054812_create_sponsor_logo_packages_table.php -- DONE
/var/www/html/crowdfunding/app/Models/SponsorLogoPackage.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminEventSponsorLogoController.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/eventLogoPrices/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminEventSponsorLogoPriceRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/eventLogoPrices/edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/eventLogoPrices/show.blade.php -- DONE
database/migrations/2020_02_17_122518_add_latlong_to_user_profiles_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminSponsorEditRequest.php -- DONE
------------------------------------------------------------------------------------------------------
20200218
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- N.R
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
------------------------------------------------------------------------------------------------------
20200219
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Models/CharitableOrganization.php -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
/var/www/html/crowdfunding/app/Repositories/EventRepository.php -- DONE
/var/www/html/crowdfunding/app/Services/EventServices.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/SponsorProfileEditRequest.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/event/index.blade.php -- DONE
/var/www/html/crowdfunding/app/Repositories/EventRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Nearby Campaigns range (KM) for sponsor', 'nearby-campaigns-range-sponsor', '10', '10km', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
UPDATE `site_settings` SET `setting_name` = 'Nearby Campaigns range (KM) for restaurant', `deleted_at` = NULL WHERE `site_settings`.`id` = 11; -- DONE
------------------------------------------------------------------------------------------------------
20200220
/var/www/html/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/event/index.blade.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Models/Menu.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
------------------------------------------------------------------------------------------------------
20200221
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
database/migrations/2020_02_21_113910_create_restaurant_availabilities_table.php -- DONE
/var/www/html/crowdfunding/app/Models/RestaurantAvailability.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
------------------------------------------------------------------------------------------------------
20200222
C:\wamp64/www/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:\wamp64/www/crowdfunding/resources/views/admin/users/family-member-add.blade.php -- DONE
C:\wamp64/www/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
C:\wamp64/www/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
------------------------------------------------------------------------------------------------------
20200223
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwnerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
------------------------------------------------------------------------------------------------------
20200224
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-edit.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/AdminSponsorAddRequest.php -- DONE
/var/www/html/crowdfunding/app/Exceptions/Handler.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/ForgotPasswordController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/BaseController.php -- DONE
/var/www/html/crowdfunding/app/Http/Middleware/ApiTokenValidation.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
/var/www/html/crowdfunding/app/Services/RestaurantServices.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
------------------------------------------------------------------------------------------------------
20200225
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
1# add a bool tag in response "isValidSession". -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/message.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/layout.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/footer-2.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/header.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer-2.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/layouts/email.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer-2-family-member.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer-2.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/familyMemberRegistration.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/sponsorRegistration.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/auth/restaurantOwnerRegistration.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer-2-sponsor.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer-2-admin.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer-2-event-organizer.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/partials/footer-2-restaurant-owner.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/restaurant/restaurantRegistrationForm.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/restaurant/sendInterestRequest.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/event/eventAddEmailToAdmin.blade.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Email phone number', 'email-phone-number', '9876543210', 'It will show in email footer section', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Email address in email', 'email-address-in-email', 'info@gmail.com', 'It will show in email footer section', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'facebook link', 'facebook-link', 'https://www.facebook.com/crowdfunding', 'facebook link in the email footer section', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'twitter link', 'twitter-link', 'https://www.twitter.com', 'link in the email footer section', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'youtube link', 'youtube-link', 'https://www.youtube.com', 'link in the email footer section', NULL, '1', '0', '0', '1', '0', NULL, NOW(), NOW()); -- DONE
/var/www/html/crowdfunding/resources/views/vendor/mail/html/footer-2.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200226
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- N.R
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
add availibity management update previous and add one, delete not satisfied -- DONE
resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
crowdfunding/resources/views/admin/charitableOrganizations/assoc-family-member-list.blade.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCharitableOrganizationController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/resources/views/email/api/auth/apiUserEmailVerification.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/email/api/auth/apiUserForgetPassword.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200227
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/routes/eventOrganizerApi.php -- DONE
------------------------------------------------------------------------------------------------------
20200228
crowdfunding/database/migrations/2020_02_28_053913_add_restaurant_id_to_orders_table.php -- DONE
crowdfunding/database/migrations/2020_02_28_060145_add_restaurant_id_to_order_items_table.php -- DONE
/var/www/html/crowdfunding/database/migrations/2020_02_28_063943_create_invoices_table.php -- DONE
/var/www/html/crowdfunding/app/Models/Invoice.php -- DONE
/var/www/html/crowdfunding/database/migrations/2020_02_28_070654_create_order_payments_table.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderPayment.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderItem.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/resources/views/email/event/eventEditEmailToAdmin.blade.php -- DONE
php artisan make:mail Api/Event/ApiEditEventDetailsEmailToAdmin -- DONE
/var/www/html/crowdfunding/app/Mail/Api/Event/ApiEditEventDetailsEmailToAdmin.php -- DONE
php artisan make:job SendEditEventDetailsEmailToAdminJob -- DONE
/var/www/html/crowdfunding/app/Jobs/SendEditEventDetailsEmailToAdminJob.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/resources/views/email/event/eventEditEmailToAdmin.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
/database/migrations/2020_02_28_111940_add_is_visible_to_site_settings_table.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/setting/content/index.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminSettingController.php -- DONE
You have successfully registered with MyCause. Kindly Click on the activation link sent on your email to verify your account.
------------------------------------------------------------------------------------------------------
20200305
need to test edit event api for email.
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
/var/www/html/crowdfunding/app/Services/CampaignServices.php -- DONE
/var/www/html/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
/var/www/html/crowdfunding/app/Models/AssociateEventUser.php -- DONE
------------------------------------------------------------------------------------------------------
20200206
/var/www/html/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
/var/www/html/crowdfunding/routes/eventOrganizerApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/ReportController.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/users/sponsor-show.blade.php -- DONE
https://www.qcode.in/managing-users-timezone-in-laravel-app/
{"user_id":569,"restaurant_id":780}
------------------------------------------------------------------------------------------------------
20200307
crowdfunding/resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
crowdfunding/app/Http/Controllers/Admin/AdminCharitableOrganizationController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/styles.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/users/sponsor-show.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200309
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/menu.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
------------------------------------------------------------------------------------------------------
20200310
/var/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
/var/www/html/crowdfunding/database/migrations/2020_03_10_095514_drop_order_items_table.php -- DONE
/var/www/html/crowdfunding/database/migrations/2020_03_10_095737_create_order_items_table.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `is_visible`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Tax percentage for Sponsor logo(%)', 'tax-sponsor-logo', '5', 'tax percentage of sponsor logo price', NULL, '1', '0', '0', '1', '0', '1', NULL, NOW(), NOW()); -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `is_visible`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Tax percentage of order(%)', 'order-tax', '10', 'tax percentage of food order', NULL, '1', '0', '0', '1', '0', '1', NULL, NOW(), NOW()); -- DONE
/var/www/html/crowdfunding/app/Models/Restaurant.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
------------------------------------------------------------------------------------------------------
20200311
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
crowdfunding/database/migrations/2020_03_11_083458_add_base_price_to_order_items_table.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderItem.php -- DONE
crowdfunding/database/migrations/2020_03_11_100543_add_transaction_id_to_order_payments_table.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderPayment.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `is_visible`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Extra pre order preparation time for restaurant(in minutes)', 'pre-preparation-order-time', '10', 'the value must be in the minute', NULL, '1', '0', '0', '1', '0', '1', NULL, NOW(), NOW()); -- DONE
------------------------------------------------------------------------------------------------------
20200312
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/MenuController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Repositories/OrderRepository.php -- DONE
/var/www/html/crowdfunding/app/Services/OrderServices.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderItem.php -- DONE
/var/www/html/crowdfunding/app/Models/MenuAddOn.php -- DONE
/var/www/html/crowdfunding/app/Repositories/OrderRepository.php -- DONE
------------------------------------------------------------------------------------------------------
20200313
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/menu.blade.php -- DONE
database/migrations/2020_03_11_102522_create_sponsor_logo_orders_table.php -- DONE
database/migrations/2020_03_11_104914_create_sponsor_logo_order_items_table.php -- DONE
database/migrations/2020_03_11_105838_create_sponsor_logo_order_payments_table.php -- DONE
database/migrations/2020_03_12_101807_create_sponsor_logo_order_invoices_table.php -- DONE
/var/www/html/crowdfunding/app/Http/Requests/SponsorEventRequest.php -- DONE
/var/www/html/crowdfunding/routes/sponsor.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/event/index.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
database/migrations/2020_03_13_120751_remove_actual_pickup_time_from_orders.php -- DONE
database/migrations/2020_03_13_120910_add_actual_pickup_date_time_to_orders_table.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
------------------------------------------------------------------------------------------------------
20200314
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/details.blade.php -- DONE
C:/wamp64/www/crowdfunding/routes/sponsor.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/SponsorEventRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `is_visible`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'sponsor logo size', 'sponsor-logo-size', '2500x3000', 'Width: 2500px, Height: 2000px', NULL, '1', '0', '0', '1', '0', '0', NULL, NOW(), NOW()); -- DONE
INSERT INTO `site_settings` (`id`, `setting_name`, `slug`, `setting_value`, `instruction`, `commission`, `is_text`, `is_textarea`, `is_image`, `is_active`, `is_delete`, `is_visible`, `deleted_at`, `created_at`, `updated_at`) VALUES (NULL, 'Transnational Payment gateway Api Key', 'transnational-payment-gateway-api-key', 'api_1YlSetyzgJSZIatg1JfGTr1TfZ8', 'Transnational Payment gateway Api Key', NULL, '1', '0', '0', '1', '0', '1', NULL, NOW(), NOW()); -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrder.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderInvoice.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderItem.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderPayment.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/PaymentGatewayApiServices.php -- DONE
migrations/2020_03_15_105517_add_name_on_card_to_sponsor_logo_order_payments_table.php -- DONE
------------------------------------------------------------------------------------------------------
20200316
php artisan make:job SendRestaurantMenuEmailToFamilyMemberJob -- DONE
php artisan make:mail Api/Event/ApiSendRestaurantMenuEmailToFamilyMember -- DONE
C:/wamp64/www/crowdfunding/app/Jobs/SendRestaurantMenuEmailToFamilyMemberJob.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Api/Event/ApiSendRestaurantMenuEmailToFamilyMember.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Api/Event/ApiSendRestaurantMenuEmailToFamilyMember.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/event/sendRestaurantMenu.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/event/sendRestaurantMenu.blade.php -- DONE
/database/migrations/2020_03_16_074107_add_restaurant_order_status_to_orders_table.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- DONE
/var/www/html/crowdfunding/app/Repositories/OrderRepository.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderPayment.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
/var/www/html/crowdfunding/routes/restaurantOwnerApi.php -- N.R
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
crowdfunding/database/migrations/2020_03_16_110038_add_is_ongoing_to_orders_table.php -- DONE
/var/www/html/crowdfunding/app/Models/Order.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/OrderRepository.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/app/Repositories/RestaurantRepository.php -- DONE
/var/www/html/crowdfunding/app/Services/RestaurantServices.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/restaurants/menu.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
------------------------------------------------------------------------------------------------------
20200317
API: /var/www/html/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
/var/www/html/crowdfunding/app/Services/OrderServices.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Repositories/OrderRepository.php -- DONE
/var/www/html/crowdfunding/routes/admin.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
/var/www/html/crowdfunding/app/Services/DefaultServices.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Models/Event.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/campaign.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/campaign.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/campaign.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/campaign.blade.php -- DONE
/var/www/html/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200318
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
php artisan make:model Models/OrderMenuItem -m -- N.R
database/migrations/2020_03_18_120820_create_order_menu_items_table.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderMenuItem.php -- DONE
php artisan make:model Models/OrderMenuAddOnItem -m -- N.R
database/migrations/2020_03_18_122025_create_order_menu_add_on_items_table.php -- DONE
/var/www/html/crowdfunding/app/Models/OrderMenuAddOnItem.php -- DONE
/var/www/html/crowdfunding/routes/familyMemberApi.php -- N.R
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
------------------------------------------------------------------------------------------------------
20200319
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/CommonController.php -- DONE
/var/www/html/crowdfunding/routes/familyMemberApi.php -- DONE
/var/www/html/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
------------------------------------------------------------------------------------------------------
20200320
crowdfunding/database/migrations/2020_03_20_051044_create_order_invoices_table.php -- DONE
crowdfunding/app/Models/OrderInvoice.php -- DONE
database/migrations/2020_03_20_051845_add_gateway_response_to_order_payments_table.php -- DONE
crowdfunding/app/Models/OrderPayment.php -- DONE
database/migrations/2020_03_20_073723_add_total_base_price_to_order_payments_table.php -- DONE
crowdfunding/app/Models/OrderPayment.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
database/migrations/2020_03_20_193315_change_payment_status_to_order_payments_table.php -- DONE
database/migrations/2020_03_20_194832_add_payment_status_to_order_payments_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/OrderPayment.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Restaurant.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/campaign.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/OrderServices.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/orderList.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:\wamp64\www\crowdfunding\public\images\details_close.png -- DONE
C:\wamp64\www\crowdfunding\public\images\details_open.png -- DONE
------------------------------------------------------------------------------------------------------
20200323
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/menu.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Order.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/OrderMenuItem.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/OrderMenuAddOnItem.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/default/invoice/orderInvoice.blade.php -- DONE
storage/images/sponsor_logo/logo.jpg -- DONE
storage/images/sponsor_logo/logo2.jpg -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwner.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/RestaurantOwner/RestaurantOrdersController.php -- DONE
------------------------------------------------------------------------------------------------------
20200324
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
max. food prep time od any dish + admin buffer time = total time -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
food prep time validation -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200325
database/migrations/2020_03_25_063909_add_tax_percentage_to_order_payments_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/OrderPayment.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/menu.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
------------------------------------------------------------------------------------------------------
20200326
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/default/invoice/orderInvoice.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/RestaurantOwner/RestaurantOrdersController.php -- DONE
http://localhost/crowdfunding/public/restaurantOwner/restaurant/Tmc9PQ==/invoice/order/TVRBPQ==
------------------------------------------------------------------------------------------------------
20200327
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/menu.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
1.please enter time within event promotion start time to event promotion end time -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
9. edit event - restrict edit if promotion started -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminRestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/layouts/email.blade.php -- N.R
C:/wamp64/www/crowdfunding/resources/views/email/layouts/email-2.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/event/eventAddEmailToAdmin.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200328
C:/wamp64/www/crowdfunding/resources/views/email/event/eventEditEmailToAdmin.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/events/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/restaurants/menu.blade.php -- DONE
-------------
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
database/migrations/2020_03_28_141919_add_base_price_to_sponsor_logo_order_payments_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderPayment.php -- DONE
------------------------------------------------------------------------------------------------------
20200329
C:/wamp64/www/crowdfunding/resources/views/sponsor/users/sponsor-show.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Event.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrder.php -- DONE
migrations/2020_03_29_144703_add_is_aprove_by_admin_to_sponsor_logo_order_items_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderItem.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/LogoRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/LogoServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/campaignList.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminEventSponsorLogoController.php -- DONE
C:/wamp64/www/crowdfunding/public/css/custom.admin.css -- DONE
database/migrations/2020_03_29_182036_add_order__i_d_to_sponsor_logo_orders_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrder.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminEventSponsorLogoController.php -- DONE
------------------------------------------------------------------------------------------------------
20200330
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/LogoRepository.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/default/invoice/orderInvoice.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
C:\Users\Sabyasachi\Downloads\food25\food25\food25.html
------------------------------------------------------------------------------------------------------
20200331
ALTER TABLE `associate_charitable_organization_users` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `associate_event_charitable_organizations` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `associate_event_restaurants` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `associate_event_users` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `associate_restaurant_users` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `badges` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `charitable_organizations` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `cms` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `events` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `menus` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `menu_add_ons` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `menu_add_on_categories` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `menu_categories` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `orders` CHANGE `pickup_date_time` `pickup_date_time` DATETIME NULL DEFAULT NULL;
ALTER TABLE `orders` CHANGE `actual_pickup_date_time` `actual_pickup_date_time` DATETIME NULL DEFAULT NULL;
ALTER TABLE `orders` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `order_invoices` CHANGE `order_date_time` `order_date_time` DATETIME NULL DEFAULT NULL;
ALTER TABLE `order_menu_add_on_items` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `order_menu_items` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `order_payments` CHANGE `date_time` `date_time` DATETIME NULL DEFAULT NULL;
ALTER TABLE `order_payments` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `restaurants` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `restaurant_availabilities` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `roles` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `role_users` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `site_settings` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_orders` CHANGE `order_date_time` `order_date_time` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_orders` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_order_invoices` CHANGE `order_date_time` `order_date_time` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_order_invoices` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_order_items` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_order_payments` CHANGE `order_date_time` `order_date_time` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_order_payments` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_packages` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `temporary_tables` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `temp_campaigns` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `users` CHANGE `email_verified_at` `email_verified_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `users` CHANGE `phone_verified_at` `phone_verified_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `users` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `user_device_tokens` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `user_profiles` CHANGE `deleted_at` `deleted_at` DATETIME NULL DEFAULT NULL;
ALTER TABLE `sponsor_logo_order_payments` CHANGE `payment_status` `payment_status` TINYINT(4)
NOT NULL DEFAULT '0' COMMENT '0=>\"pending\",1=>\"approved\",2=>\"failed\",3=>\"declined\"'; -- ALL DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/SchoolController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwnerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/details.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200401
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMemberApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/OrderServices.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwnerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/OrderServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/details.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
composer require "almasaeed2010/adminlte=~3.0" -- N.R
------------------------------------------------------------------------------------------------------
20200402
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/details.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMemberApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/FamilyMember/FamilyMemberOrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMember.php -- DONE
------------------------------------------------------------------------------------------------------
20200403
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/database/migrations/2020_04_03_021802_create_sponsor_carts_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorCart.php -- DONE
C:/wamp64/www/crowdfunding/routes/sponsor.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/details.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/index.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorCart.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/cartPayment.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/partials/styles.blade.php -- DONE
C:/wamp64/www/crowdfunding/public/css/custom.sponsor.css -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/partials/meta.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200404
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/cartPayment.blade.php -- DONE
FIRST DROP FOREIGN KEY FROM PHPMYADMIN THE DO BELOW STEP -- DONE
crowdfunding/database/migrations/2020_04_04_064034_remove_sponsor_logo_orders_from_orders.php -- DONE
database/migrations/2020_04_04_080304_add_total_price_to_sponsor_logo_order_payments_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrder.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderPayment.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/LogoRepository.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Event.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/Event.php -- DONE
php artisan make:job SendSponsorLogoUploadEmailToAdminJob -- DONE
php artisan make:mail Admin/SendSponsorLogoUploadEmailToAdmin -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Admin/SendSponsorLogoUploadEmailToAdmin.php -- DONE
C:/wamp64/www/crowdfunding/app/Jobs/SendSponsorLogoUploadEmailToAdminJob.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderItem.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/admin/sponsorLogoUpload.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Admin/SendSponsorLogoUploadEmailToAdmin.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrder.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/admin/sponsorLogoUpload.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Admin/SendSponsorLogoUploadEmailToAdmin.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
------------------------------------------------------------------------------------------------------
20200405
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderItem.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/admin/sponsorLogoUpload.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/cartPayment.blade.php -- DONE
php artisan make:job SendSponsorLogoUploadEmailToSponsorJob -- DONE
php artisan make:mail Sponsor/SendSponsorLogoUploadEmailToSponsor -- DONE
C:/wamp64/www/crowdfunding/app/Jobs/SendSponsorLogoUploadEmailToSponsorJob.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/sponsor/sponsorLogoUpload.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Sponsor/SendSponsorLogoUploadEmailToSponsor.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Sponsor/SendSponsorLogoUploadEmailToSponsor.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/admin/sponsorLogoUpload.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderItem.php -- DONE
php artisan make:job SendSponsorLogoApprovalEmailToSponsorJob -- DONE
php artisan make:mail Sponsor/SendSponsorLogoApprovalEmailToSponsor -- DONE
C:/wamp64/www/crowdfunding/app/Jobs/SendSponsorLogoApprovalEmailToSponsorJob.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Sponsor/SendSponsorLogoApprovalEmailToSponsor.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderItem.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/sponsor/sponsorLogoApproval.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminEventSponsorLogoController.php -- DONE
crowdfunding/public/images/loader.gif -- DONE
------------------------------------------------------------------------------------------------------
20200406
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/cartPayment.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/sponsor/sponsorLogoUpload.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/admin/sponsorLogoUpload.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/Auth/LoginController.php -- DONE
------------------------------------------------------------------------------------------------------
20200407
C:/wamp64/www/crowdfunding/app/Models/Order.php -- DONE
database/migrations/2020_04_07_101739_create_invoice_event_logos_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/InvoiceEventLogo.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/RestaurantOwner/RestaurantOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/default/invoice/orderInvoice.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/OrderInvoice.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/RestaurantOwner/RestaurantOrdersController.php -- DONE
------------------------------------------------------------------------------------------------------
20200408
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/routes/eventOrganizerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/DefaultController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMemberApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwnerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/FamilyMember/FamilyMemberOrderController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/index.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/cartPayment.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/details.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200410
C:/wamp64/www/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/scripts.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/styles.blade.php -- DONE
add datepicker js,css file - plugin -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/public/plugins/datetimepicker -- DONE
C:\Users\Sabyasachi\Desktop\orders.html -- N.R
------------------------------------------------------------------------------------------------------
20200411
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/order.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/orderList.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:\wamp64/www/crowdfunding/resources/views/admin/orders/orderList.blade.php -- DONE
C:\wamp64/www/crowdfunding/routes/admin.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/MenuController.php -- DONE
------------------------------------------------------------------------------------------------------
20200412
C:/wamp64/www/crowdfunding/app/Models/Restaurant.php -- DONE
crowdfunding/database/migrations/2020_04_12_055533_add_timezone_to_restaurants_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Providers/RouteServiceProvider.php -- DONE
C:/wamp64/www/crowdfunding/routes/cron.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
php artisan make:job SendOngoingOrderEmailToRestaurantOwnerJob -- DONE
php artisan make:mail Restaurant/SendOngoingOrderEmailToRestaurantOwner -- DONE
C:/wamp64/www/crowdfunding/app/Jobs/SendOngoingOrderEmailToRestaurantOwnerJob.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Restaurant/SendOngoingOrderEmailToRestaurantOwner.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/restaurant/ongoingOrder.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
------------------------------------------------------------------------------------------------------
20200413
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/restaurantMap.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/OrderServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
------------------------------------------------------------------------------------------------------
20200414
C:/wamp64/www/crowdfunding/resources/views/admin/orders/campaign.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/AssociateEventRestaurant.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/OrderServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/ReportController.php -- DONE
------------------------------------------------------------------------------------------------------
20200416
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/UserProfile.php -- DONE
crowdfunding/database/migrations/2020_04_16_153330_add_user_timezone_to_user_profiles_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/DefaultController.php -- DONE
C:/wamp64/www/crowdfunding/routes/eventOrganizerApi.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwnerApi.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMemberApi.php -- DONE
------------------------------------------------------------------------------------------------------
20200417
crowdfunding/database/migrations/2020_04_17_091304_create_push_notifications_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/PushNotification.php -- DONE
C:/wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/PushNotificationServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/PushNotificationServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
crowdfunding/resources/views/admin/charitableOrganizations/charitable-organization-list.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200418
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/scripts.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/PushNotificationServices.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/admin-list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/event-organizer-list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/restaurant-owner-list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/family-member-list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/sponsor-list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
------------------------------------------------------------------------------------------------------
20200419
C:/wamp64/www/crowdfunding/resources/views/admin/users/admin-edit.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/AdminAdminEditRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/AdminEventOrganizerEditRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/AdminRestaurantOwnerEditRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/AdminFamilyMemberEditRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/AdminSponsorEditRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/event-organizer-edit.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/restaurant-owner-edit.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/family-member-edit.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/sponsor-edit.blade.php -- DONE
crowdfunding/database/migrations/2020_04_19_022112_add_user_role_to_user_device_tokens_table.php -- DONE
C:\wamp64/www/crowdfunding/app/Models/UserDeviceToken.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/AuthController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/DefaultController.php -- DONE
C:\wamp64/www/crowdfunding/.env -- DONE
C:\wamp64/www/crowdfunding/app/Services/PushNotificationServices.php -- DONE
C:\wamp64/www/crowdfunding/resources/views/email/api/auth/apiUserEmailVerification.blade.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
C:\wamp64/www/crowdfunding/resources/views/default/email/emailverified.blade.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/CommonController.php -- DONE
/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/Auth/ForgotPasswordController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/CommonController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/Auth/AuthController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/SchoolController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/RestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/ReportController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/EventController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/CommonController.php -- DONE
www/crowdfunding/app/Http/Controllers/API/v1/EventOrganizer/Auth/ForgotPasswordController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:\wamp64\www\crowdfunding/public/css/custom.admin.css -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
C:\wamp64\www\crowdfunding/resources/views/email/restaurant/ongoingOrder.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200420
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronEventsController.php -- DONE
C:/wamp64/www/crowdfunding/routes/cron.php -- DONE
C:/wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/restaurant/ongoingOrder.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/orderList.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/OrderServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:\wamp64\www\crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/RestaurantController.php -- DONE
------------------------------------------------------------------------------------------------------
20200421
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/resources/views/admin/orders/orderList.blade.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronEventsController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:\wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:\wamp64\www/crowdfunding/routes/cron.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
database/migrations/2020_04_21_125932_add_apn_response_to_push_notifications_table.php -- DONE
C:\wamp64/www/crowdfunding/app/Models/PushNotification.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/FamilyMember/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/EventController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/API/v1/RestaurantOwner/OrderController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronEventsController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/DefaultController.php -- DONE
C:\wamp64/www/crowdfunding/app/Services/PushNotificationServices.php -- DONE
C:\wamp64/www/crowdfunding/app/Helpers/CommonHelper.php -- DONE
C:\wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
------------------------------------------------------------------------------------------------------
20200422
/var/www/html/crowdfunding/app/Http/Controllers/API -- DONE
C:/wamp64/www/crowdfunding/routes/eventOrganizerApi.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMemberApi.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwnerApi.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/CampaignRepository.php -- DONE
C:/wamp64/www/crowdfunding/routes/restaurantOwner.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/default/invoice/orderInvoice.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/RestaurantOwner/RestaurantOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronEventsController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/RestaurantOwner/EventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/event/eventAddEmailToAdmin.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/EventOrganizer/EventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/event/eventEditEmailToAdmin.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/restaurant/sendInterestRequest.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/scripts.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/restaurantOwner/partials/scripts.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/partials/scripts.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/eventOrganizer/partials/scripts.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200423
C:/wamp64/www/crowdfunding/resources/views/admin/campaigns/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/RestaurantOwner/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/RestaurantOwner/EventController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronEventsController.php -- DONE
------------------------------------------------------------------------------------------------------
20200424
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/orders/orderList.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/FamilyMember/FamilyMemberOrderController.php -- DONE
C:/wamp64/www/crowdfunding/routes/familyMember.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/PushNotificationServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Mail/Api/FamilyMember/ApiOrderSubmitEmailToFamilyMember.php -- DONE
www/crowdfunding/resources/views/email/familyMember/orderSubmitEmailToFamilyMember.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/FamilyMember/OrderController.php -- DONE
php artisan make:mail Api/FamilyMember/ApiOrderSubmitEmailToFamilyMember -- DONE
C:/wamp64/www/crowdfunding/config/mail.php -- DONE
------------------------------------------------------------------------------------------------------
20200425
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/Auth/LoginController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/partials/scripts.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/users/sponsor-edit.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/SponsorProfileEditRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorUserController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/sponsor/event/details.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/email/sponsor/sponsorLogoApproval.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminEventSponsorLogoController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminReportController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/logo/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/campaignList.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
------------------------------------------------------------------------------------------------------
20200427
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminReportController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/campaign/campaign.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/campaign/orderList.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/campaign/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminCampaignController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminOrdersController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/FamilyMember/OrderController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Cron/CronEventsController.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Requests/AdminSponsorAddRequest.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminUserController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/users/sponsor-add.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/campaign/orderList.blade.php -- DONE
migrations/2020_04_27_134843_add_logo_package_price_to_sponsor_logo_order_payments_table.php -- DONE
C:/wamp64/www/crowdfunding/app/Models/SponsorLogoOrderPayment.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Sponsor/SponsorEventController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/show.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/logo/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/sponsorLogos/campaignList.blade.php -- DONE
C:/wamp64/www/crowdfunding/routes/admin.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/partials/sidebar.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/OrderServices.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/restaurant/list.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminReportController.php -- DONE
C:/wamp64/www/crowdfunding/app/Services/DefaultServices.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/restaurant/campaignList.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/restaurant/orderList.blade.php -- DONE
------------------------------------------------------------------------------------------------------
20200429
C:/wamp64/www/crowdfunding/app/Http/Controllers/API/devV1/EventOrganizer/SchoolController.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/order/orderList.blade.php -- DONE
C:/wamp64/www/crowdfunding/resources/views/admin/reports/restaurant/campaignList.blade.php -- DONE
C:/wamp64/www/crowdfunding/app/Repositories/OrderRepository.php -- DONE
C:/wamp64/www/crowdfunding/app/Http/Controllers/Admin/AdminReportController.php -- DONE
---------------------------------------------------------------------
1) can I see dollar totals of restaurants events in progress
2) Completed events
3) Restaurant food report,
4) Sponsor logo upload price report
-------------------
"card": {
"entry_type": "keyed",
"number": "4012000098765439",
"expiration_date": "12/20",
"cvc": "999"
}
----------------------------------------------------------------------------
$userTimezone = $userDetails->userProfile->user_timezone??'';
$userTimezone = Auth::user()->userProfile->user_timezone??'';
$user_current_date_time = getDateTimeOfSpecificTimeZone($userTimezone);
$user_pickup_date_time = utcToLocalDateTime($userTimezone, $orderDetails->pickup_date_time);
-------------
1. push notifications sheet e duto notification ache jegulo aschena 6 r 7 row er ogulo aschena akhn - D
2. restaurant registration e kono notification aschena.
3. "You have a new order to be prepared by 5PM" eta bhul aschilo kal, aaj akhn o paini eta pele bujhte parbo
4. Jeet da jetaye comment korechilo ota pending
5. Event promotion date for starting day er notification aschena
6. Restaurant selection admin theke confirm korle notification aschena
------------
{
"aps": {
"alert": {
"title": "Registration successful",
"body": "Your account has been registered successfully"
},
"sound": "default"
},
"data": {
"type": "registration"
}
}
-----------------------
help:
https://developer.apple.com/library/archive/documentation/NetworkingInternet/Conceptual/RemoteNotificationsPG/APNSOverview.html
https://developer.apple.com/library/archive/technotes/tn2265/_index.html
------------------------------------------------------------------------------------------------------
Cron links:
1. Ongoing order cron link:
https://nodejsdapldevelopments.com/crowdfunding/public/cron/order/ongoing (every two mins)
http://localhost/crowdfunding/public/cron/order/ongoing
2. Start event day notification to event organizer:
https://nodejsdapldevelopments.com/crowdfunding/public/cron/event/startDayNotification (one time per day)
http://localhost/crowdfunding/public/cron/event/startDayNotification (one time per day)
3. promotion day notification to restaurant owner everyday:
https://nodejsdapldevelopments.com/crowdfunding/public/cron/event/restaurants/promotionDayNoti (one time per day)
http://localhost/crowdfunding/public/cron/event/restaurants/promotionDayNoti (one time per day)
4. order auto confirm after 5mins of order:
https://nodejsdapldevelopments.com/crowdfunding/public/cron/order/autoConfirm (every 1min)
http://localhost/crowdfunding/public/cron/order/autoConfirm (every 1min)
5. order reminder to family member every 8hours intervals:
https://nodejsdapldevelopments.com/crowdfunding/public/cron/order/orderReminder (3times/day)
http://localhost/crowdfunding/public/cron/order/orderReminder
cron set hoe gache
2nd --> 11:50 a.m. IST,
3rd ---> 12:00 p.m. IST
---------------------------------------------------------------------------------------------------
https://medium.com/@arifulislam_ron/a-quick-guide-to-implement-firebase-web-push-notification-in-laravel-ac11ba3260b4
https://stackoverflow.com/questions/56826247/sending-firebase-push-notifications-from-laravel
https://firebase.google.com/docs/cloud-messaging/concept-options
https://www.youtube.com/watch?v=3Dp8iONM8G8
https://www.youtube.com/watch?v=_3YlqWWnI6s
https://gist.github.com/manjeshpv/d5b8e271af94824836d9
https://www.spokenbyyou.com/send-push-notification-ios-using-php/#codesyntax_1
http://lessons.livecode.com/m/4069/l/53405-how-do-i-use-push-notifications-with-ios
Development server: api.development.push.apple.com:443
Production server: api.push.apple.com:443
---------------------------------------------
--------------------------------------------------------
Any user will be able to register in family member application and will be able to browse nearby restaurants based on their location, here the restaurants which are associated any of the campaign will be listed as nearby restaurants.
If any users click on the link shared on social media platform they will be asked to register and login. If users will be already registered and logged in after clicking on the link directly menu of the particular restaurant will be shown.
family member API:
5. Edit Account details Api - store user lat, long in DB table = 30mins
8. Restaurant List Api = 18hours
New: Registration with email verification = 4hours,
deep link replication = 1hours
total: approx. 26hours
-------------------------------------
pending section:
3. ongoing order list by cron -- DONE
5. 2# make them all auto accepted for now. -- revert pending -- DONE
6. send menu board to family members and save into table -- pending
7. send email to all restuarant owners if promotion time changed in edit event api -- pending
-- hold -- admin will send request them again
8. Email service - mailgun integration -- HOLD
10. email template - table
11. order items show in each order - admin order -- DONE
12. earning thorugh advertisement: order id wise listing in adv report. ******************
13. restaurant will be active during first menu item add -- DONE
14. https://docs.google.com/presentation/d/1RdpvhULvh8p5OPJhQ1LqshW3rGDR7xBD/edit#slide=id.p9
Slide# 5,9(schooI ID), 11
15. add/update timezone through api -- DONE
16. UTC+Local timezone - admin + all emails -- DONE
------------------------------------
email template:
/home/dat-asset-162/Desktop/email template/email-template/food25/food25.html
cmmi feedback form fillup ********
List down all ueries regarding pending apis *********************
-------------------------------------------------------------------------------------------------------
One restaurant - separate categories,
1. menu category per restaurant wise,
2. sub category per menu item wise
Event, AssociateEventUser, AssociateEventRestaurant, AssociateEventCharitableOrganization
------------------------------------
https://developers.google.com/maps/solutions/store-locator/clothing-store-locator#findnearsql
https://developers.google.com/maps/documentation/distance-matrix/intro
--------------------------------------------------------------------------------------------------------
**** Pending: Association of restaurant, school with event is not disable -- PENDING
php artisan make:migration add_food_preparation_time_to_menus_table --table=menus
php artisan make:migration change_admin_commission_to_restaurants_table --table=restaurants
php artisan make:migration remove_actual_pickup_time_from_orders --table=orders
-----------------------------------
transnational payment gateway sandbox
transaction api
url : https://sandbox.gotnpgateway.com/api/transaction
POST
header :
Authorization:api_1YlSetyzgJSZIatg1JfGTr1TfZ8
Content-Type:application/json
raw body:
{
"type": "sale",
"amount": 1300,
"tax_amount": 100,
"shipping_amount": 100,
"currency": "USD",
"order_id": "1",
"ip_address": "4.2.2.2",
"email_receipt": true,
"email_address": "testdevloper007@gmail.com",
"create_vault_record": true,
"payment_method": {
"card": {
"entry_type": "keyed",
"number": "4012000098765439",
"expiration_date": "12/20",
"cvc": "999"
}
},
"billing_address" : {
"first_name": "John",
"last_name": "Smith",
"company": "Test Company",
"address_line_1": "123 Some St",
"city": "Wheaton",
"state": "IL",
"postal_code": "60187",
"country": "US",
"phone": "5555555555",
"fax": "5555555555",
"email": "testdevloper007@gmail.com"
}
}
name_on_card: "sabya",
card_number:2255987452012547,
expiration:03/20, (MM/YY)
cvv:123
----------------------------------------------------------------------------------------------------