- Remove email and mobile update option
- Profile pic is not showing (its a bug?)
- Country search in travel option need to be case insensitive
- Company Logo not showing in omc search result
- User details textarea need to have some padding
[aria-label="Leave a comment"] { | |
display: none; | |
} | |
[aria-label="Like"] { | |
display: none; | |
} | |
[aria-label="Leave a comment"] { | |
display: none; | |
} | |
[aria-label="Like"] { |
if (request()->has('starting_date') && request('starting_date')) {
$query->wheredate('created_at', '>=', request('starting_date'));
}
if (request()->has('ending_date') && request('ending_date')) {
$query->whereDate('created_at', '<=', request('ending_date'));
}
raw sql
from debugbar
<?php | |
namespace App\Libraries; | |
// one year period | |
const pragati_health_insurance_plans = [ | |
['plan' => 'pragati_health_insurance_plan_1', 'title' => 'Pragati Health Insurance - Plan 1', 'self_price' => 'p1_s', 'couple_price' => 'p1_c', 'child_price' => 'p1_x'], | |
['plan' => 'pragati_health_insurance_plan_2', 'title' => 'Pragati Health Insurance - Plan 2', 'self_price' => 'p2_s', 'couple_price' => 'p2_c', 'child_price' => 'p2_x'], | |
]; |
Go to https://bimafy.com/dashboard/affiliate/create to register a referral code.
Assign a referral code to a user.
affiliate link will be query string with parameter ref
.
Not doing more than 12 reps, will cost my gym time | |
# Common gym (every day) ( 30 + 10 = 40 minutes max) | |
1. Pull Up - 5 mins | |
2. Overhead press/chest press - 5 mins | |
3. Squat (2-4 sets) - 5 mins | |
4. Dumbbell Lateral raises (2-4 sets) - 5 mins | |
5. Dumbbell Front raises (2-4 sets) - 5 mins | |
6. Machine Lat Pull-down (2-4 sets) - 5 mins | |
7. Forearms Exercise ( ending optional ) |
How are you?
I am fine. How are you, sir?
What's your name?
My Name is Sabuj Aich
What's your passport number?
My Passport number is XXXX
What's your date of birth?
var products = { | |
"categoryList": [ | |
{ | |
"_id": "1", | |
"name": "electronics", | |
"children" : [ | |
{ | |
"_id": "2", | |
"name": "mobile", | |
"parentId": "1", |
alias gs="git status" | |
alias www="cd /var/www" | |
alias sa="cd /etc/apache2/sites-available" | |
alias ra="sudo systemctl restart apache2" | |
alias gpull="git pull origin master" | |
alias migfs="echo 'never'" | |
alias art="php artisan" | |
alias up="php artisan up" | |
alias down="php artisan down" |