-
Notifications
You must be signed in to change notification settings - Fork 7
/
houserental.sql
930 lines (807 loc) · 504 KB
/
houserental.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
-- phpMyAdmin SQL Dump
-- version 5.0.1
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Nov 19, 2020 at 05:38 AM
-- Server version: 10.4.11-MariaDB
-- PHP Version: 7.4.2
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `houserental`
--
-- --------------------------------------------------------
--
-- Table structure for table `admins`
--
CREATE TABLE `admins` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`places` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`coupon` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`blogs` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`all_properties` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`orders` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`reports` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`user_role` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`newsletter` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`contact_messages` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`site_setting` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`database_backup` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`type` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `admins`
--
INSERT INTO `admins` (`id`, `name`, `phone`, `email`, `email_verified_at`, `password`, `remember_token`, `places`, `coupon`, `blogs`, `all_properties`, `orders`, `reports`, `user_role`, `newsletter`, `contact_messages`, `site_setting`, `database_backup`, `type`, `created_at`, `updated_at`) VALUES
(3, 'Admin', '01711212121', '[email protected]', NULL, '$2y$10$Wo43r5R2lxeZuFlxJH8hu.wbUPbvhkho0DtNxg6bnTtC7.IlJwF0e', 'xkBrGgFDNuOZyUyfendF2tqIbeGUqGq0BzTJWDEIuJawwc7N8l6XtTb76k7p', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '1', '2020-02-21 04:49:25', '2020-04-25 10:25:32'),
(4, 'Arman', '01877638277', '[email protected]', NULL, '$2y$10$qs1oDV2HhydK2Jzo57kdnOw9TQHasF2iVBEpLI8uDlWkkJtTTx3a6', NULL, '1', '1', NULL, '1', NULL, '1', NULL, NULL, NULL, NULL, '1', '2', '2020-05-06 20:51:01', '2020-05-06 20:51:01');
-- --------------------------------------------------------
--
-- Table structure for table `cities`
--
CREATE TABLE `cities` (
`id` bigint(20) UNSIGNED NOT NULL,
`city_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `cities`
--
INSERT INTO `cities` (`id`, `city_name`, `created_at`, `updated_at`) VALUES
(1, 'Chattogram', NULL, NULL),
(2, 'Dhaka', NULL, NULL),
(3, 'Rajshahi', '2020-04-29 14:01:47', '2020-04-29 14:01:47'),
(4, 'Khulna', '2020-04-29 14:05:08', '2020-04-29 14:05:08'),
(5, 'Barisal', '2020-04-29 14:05:22', '2020-04-29 14:05:22'),
(6, 'Sylhet', '2020-04-29 14:05:31', '2020-04-29 14:05:31'),
(7, 'Comilla', '2020-04-29 14:05:49', '2020-04-29 14:05:49'),
(8, 'Rangpur', '2020-04-29 14:06:04', '2020-04-29 14:06:04'),
(10, 'Mymensingh', '2020-04-30 19:02:32', '2020-04-30 19:02:32');
-- --------------------------------------------------------
--
-- Table structure for table `contacts`
--
CREATE TABLE `contacts` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`subject` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`message` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`status` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`review` int(11) DEFAULT NULL,
`date` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `contacts`
--
INSERT INTO `contacts` (`id`, `name`, `email`, `phone`, `subject`, `message`, `status`, `review`, `date`, `created_at`, `updated_at`) VALUES
(2, 'Irfan Chowdhury', '[email protected]', '01877777777', NULL, 'Hey!\r\nI have found a renter for my propertiy, Please delete my property from your website which i sent you the previous month.', '1', 0, '30-05-20', '2020-05-08 10:56:34', '2020-05-08 10:56:34'),
(3, 'Arman', '[email protected]', '0181111112', 'Peoperties', 'Hey! Good Morning. How can edit my property add request form which is already sent to you? I had put there my old email address. I want to replace it with my new email account, Please response me to solve this issue. Thank You.', '1', 0, '08-05-20', '2020-05-08 15:31:38', '2020-05-08 15:31:38'),
(4, 'Helal Uddin', '[email protected]', '01811112212', 'Payment', 'Hi! Take my Salam.\r\n\r\nIs there any online payment system available to you?', '1', 0, '08-05-20', '2020-05-08 15:34:06', '2020-05-08 15:34:06'),
(5, 'Shahed Sultan', '[email protected]', '22333455325', NULL, 'Assalamu Alaikum.\r\n\r\nYou guys are awesome, All thanks to \'BariWala\' for taking this kind of unique step and made our life easy,', '0', 0, '08-05-20', '2020-05-08 15:53:11', '2020-05-08 15:53:11'),
(6, 'Junayed Abdullah', '[email protected]', '22333455325', 'Review', 'Nice to meet you guys!\r\nSo nice behaviour, Wish you good luck!', '0', 0, '08-05-20', '2020-05-08 18:20:07', '2020-05-08 18:20:07'),
(7, 'Nazim Uddin', '[email protected]', '01833000325', NULL, 'Is there anyone available?', '0', 0, '21-09-20', '2020-09-20 19:51:50', '2020-09-20 19:51:50'),
(8, 'jahed H Hossen', '[email protected]', '+8801733455325', NULL, 'Bariwala.com does its job well, makes it easy to rent. Listing is easy, with just a few simple steps. Highly recommend on behalf of me.', '0', 1, '18-11-20', '2020-11-18 11:38:35', '2020-11-18 11:38:35'),
(9, 'Sazzad Hossen', '[email protected]', '+441733455325', NULL, 'I recommend using Bariwala.com if you want to quickly and easily list a property or apartment for rent or sell. It is simple to use and will get your listing in front of a larger audience.', '0', 1, '18-11-20', '2020-11-18 14:04:25', '2020-11-18 14:04:25'),
(10, 'Ariful Islam', '[email protected]', '+441733455325', NULL, 'I have found a much higher quality of renter by using this process. All thanks to Bariwala.com', '0', 1, '18-11-20', '2020-11-18 14:04:43', '2020-11-18 14:04:43'),
(11, 'Kamrul Hasan', '[email protected]', '+8801833455325', NULL, 'I think the Bariwala.com website could use some upgrades. It can be a little slow and glitchy sometimes.', '1', 0, '18-11-20', '2020-11-18 14:05:16', '2020-11-18 14:05:16'),
(12, 'Md Ariful Islam', '[email protected]', '01877766677', NULL, 'Straight forward accurate information, never any discrepancies between what I list through Appfolio and what Rent.com states.', '0', 1, '18-11-20', '2020-11-18 14:06:06', '2020-11-18 14:06:06'),
(13, 'Md Arman', '[email protected]', '01733455325', NULL, 'This site has a great design and features trending cities and pet-friendly apartments.', '0', 1, '18-11-20', '2020-11-18 14:07:07', '2020-11-18 14:07:07');
-- --------------------------------------------------------
--
-- Table structure for table `coupons`
--
CREATE TABLE `coupons` (
`id` bigint(20) UNSIGNED NOT NULL,
`coupon` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`discount` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `coupons`
--
INSERT INTO `coupons` (`id`, `coupon`, `discount`, `created_at`, `updated_at`) VALUES
(1, 'iiuc', '5', NULL, NULL),
(2, 'cse', '2', NULL, NULL),
(3, 'iiucian', '2', '2020-05-02 15:35:30', '2020-05-02 15:35:30');
-- --------------------------------------------------------
--
-- Table structure for table `failed_jobs`
--
CREATE TABLE `failed_jobs` (
`id` bigint(20) UNSIGNED NOT NULL,
`connection` text COLLATE utf8mb4_unicode_ci NOT NULL,
`queue` text COLLATE utf8mb4_unicode_ci NOT NULL,
`payload` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`exception` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`failed_at` timestamp NOT NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `interested_properties`
--
CREATE TABLE `interested_properties` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`property_code` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` int(11) NOT NULL,
`date` varchar(121) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`message` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `interested_properties`
--
INSERT INTO `interested_properties` (`id`, `name`, `email`, `phone`, `property_code`, `status`, `date`, `message`, `created_at`, `updated_at`) VALUES
(1, 'user', '[email protected]', '01877777777', 'BW-465488', 1, '01-07-20', 'I would like to inquire about your property BW-465488. Please contact me at your earliest convenience.', '2020-05-28 15:51:58', '2020-05-28 15:51:58'),
(2, 'user', '[email protected]', '01877777777', 'BW-472694', 0, '04-07-20', 'I would like to inquire about your property BW-472694. Please contact me at your earliest convenience.', '2020-05-28 15:52:57', '2020-05-28 15:52:57'),
(3, 'user', '[email protected]', '01877777777', 'BW-819900', 0, '03-07-20', 'I would like to inquire about your property BW-819900. Please contact me at your earliest convenience.', '2020-05-28 16:02:36', '2020-05-28 16:02:36'),
(7, 'Rahim', '[email protected]', '01788845488', 'BW-889258', 0, '01-07-20', 'I would like to inquire about your property BW-889258. Please contact me at your earliest convenience.', '2020-05-29 15:06:52', '2020-05-29 15:06:52'),
(8, 'Sakil Ahmed', '[email protected]', '01874532626', 'BW-850066', 0, '04-07-20', 'I would like to inquire about your property BW-850066. Please contact me at your earliest convenience.', '2020-05-29 15:07:22', '2020-05-29 15:07:22'),
(10, 'Faiaz Rahman', '[email protected]', '01755563634', 'BW-968529', 0, '01-05-20', 'I would like to inquire about your property BW-968529. Please contact me at your earliest convenience.', '2020-05-29 15:15:09', '2020-05-29 15:15:09'),
(11, 'Ariful Islam', '[email protected]', '01877766677', 'BW-889258', 0, '01-05-20', 'I would like to inquire about your property BW-889258. Please contact me at your earliest convenience.', '2020-05-29 15:23:08', '2020-05-29 15:23:08'),
(12, 'Sazzad Hossen', '[email protected]', '01733455325', 'BW-422013', 1, '05-07-20', 'I would like to inquire about your property BW-422013. Please contact me at your earliest convenience.', '2020-05-29 15:25:23', '2020-05-29 15:25:23'),
(13, 'newuser', '[email protected]', '01789876888', 'BW-481752', 0, '01-07-20', 'I would like to inquire about your property BW-481752. Please contact me at your earliest convenience.', '2020-05-29 19:55:43', '2020-05-29 19:55:43'),
(14, 'Inewuser', '[email protected]', '01788883421', 'BW-889258', 0, '01-07-20', 'I would like to inquire about your property BW-889258. Please contact me at your earliest convenience.', '2020-05-29 19:56:48', '2020-05-29 19:56:48'),
(15, 'Sazzad Hossen', '[email protected]', '01733455325', 'BW-889258', 1, '01-05-20', NULL, '2020-05-30 11:16:47', '2020-05-30 11:16:47'),
(19, 'Sakil Islam', '[email protected]', '01874532626', 'BW-237224', 1, '05-07-20', NULL, '2020-05-30 14:40:04', '2020-05-30 14:40:04'),
(20, 'Alamgir Hossen', '[email protected]', '016748372364', 'BW-646347', 0, '01-05-20', 'I would like to inquire about your property BW-646347. Please contact me at your earliest convenience.', '2020-05-30 14:54:39', '2020-05-30 14:54:39'),
(33, 'Sazzad Chy', '[email protected]', '01733456725', 'BW-850066', 0, '01-06-20', 'I would like to inquire about your property BW-850066. Please contact me at your earliest convenience.', '2020-05-30 19:13:18', '2020-05-30 19:13:18'),
(34, 'Hasan Chy', '[email protected]', '01877746737', 'BW-544813', 1, '05-07-20', 'I would like to inquire about your property BW-544813. Please contact me at your earliest convenience.', '2020-06-02 07:05:53', '2020-06-02 07:05:53'),
(35, 'Alam Chy', '[email protected]', '01877756977', 'BW-236862', 1, '03-05-20', 'I would like to inquire about your property BW-236862. Please contact me at your earliest convenience.', '2020-06-02 07:07:43', '2020-06-02 07:07:43'),
(36, 'Mostaq Ahmed', '[email protected]', '01877745243', 'BW-840463', 0, '05-06-20', 'I would like to inquire about your property BW-840463. Please contact me at your earliest convenience.', '2020-06-02 07:21:15', '2020-06-02 07:21:15'),
(38, 'user', '[email protected]', '01877777777', 'BW-593643', 0, '04-05-20', 'I would like to inquire about your property BW-593643. Please contact me at your earliest convenience.', '2020-06-29 11:45:04', '2020-06-29 11:45:04'),
(39, 'user', '[email protected]', '01877777777', 'BW-593643', 0, '05-06-20', 'I would like to inquire about your property BW-593643. Please contact me at your earliest convenience.', '2020-06-29 11:53:46', '2020-06-29 11:53:46'),
(40, 'user', '[email protected]', '01877777777', 'BW-968529', 0, '05-06-20', 'I would like to inquire about your property BW-968529. Please contact me at your earliest convenience.', '2020-06-29 12:00:32', '2020-06-29 12:00:32'),
(41, 'Sattar Alam', '[email protected]', '01877746700', 'BW-768491', 1, '04-07-20', NULL, '2020-07-02 06:57:37', '2020-07-02 06:57:37'),
(43, 'Baqtiar', '[email protected]', '01733455325', 'BW-480463', 0, '02-07-20', NULL, '2020-07-02 09:28:13', '2020-07-02 09:28:13'),
(44, 'Sazzad Hossen Alam', '[email protected]', '01733455325', 'BW-278360', 1, '02-07-20', 'I would like to inquire about your property BW-278360. Please contact me at your earliest convenience.', '2020-07-02 09:32:20', '2020-07-02 09:32:20'),
(45, 'Hasan Chy Alam', '[email protected]', '01877746737', 'BW-889258', 0, '02-07-20', NULL, '2020-07-02 09:36:13', '2020-07-02 09:36:13'),
(47, 'Saiful Rao', '[email protected]', '018347383748', 'BW-755138', 1, '03-07-20', 'I would like to inquire about your property BW-755138. Please contact me at your earliest convenience.', '2020-07-03 09:47:15', '2020-07-03 09:47:15'),
(48, 'Sajjad Hossen', '[email protected]', '01733455325', 'BW-122019', 1, '04-07-20', 'I would like to inquire about your property BW-122019. Please contact me at your earliest convenience.', '2020-07-04 10:37:49', '2020-07-04 10:37:49'),
(49, 'Shohel Alam Chy', '[email protected]', '01734455325', 'BW-463561', 1, '04-07-20', 'I would like to inquire about your property BW-463561. Please contact me at your earliest convenience.', '2020-07-04 10:38:14', '2020-07-04 10:38:14'),
(50, 'M. Alam Chy', '[email protected]', '01877746735', 'BW-898312', 0, '04-07-20', 'I would like to inquire about your property BW-898312. Please contact me at your earliest convenience.', '2020-07-04 19:58:32', '2020-07-04 19:58:32'),
(51, 'jahed H Hossen', '[email protected]', '01733455325', 'BW-626017', 0, '04-07-20', 'I would like to inquire about your property BW-626017. Please contact me at your earliest convenience.', '2020-07-04 20:30:01', '2020-07-04 20:30:01'),
(52, 'Sattar Sumon', '[email protected]', '01877746735', 'BW-398293', 0, '05-07-20', 'I would like to inquire about your property BW-398293. Please contact me at your earliest convenience.', '2020-07-04 21:07:02', '2020-07-04 21:07:02'),
(53, 'Hosain Sakil Ahmed', '[email protected]', '01844532626', 'BW-182691', 1, '13-07-20', 'I would like to inquire about your property BW-182691. Please contact me at your earliest convenience.', '2020-07-12 19:52:37', '2020-07-12 19:52:37'),
(54, 'Md. jahed Hossen', '[email protected]', '01733455325', 'BW-596873', 1, '13-07-20', 'I would like to inquire about your property BW-596873. Please contact me at your earliest convenience.', '2020-07-12 19:55:20', '2020-07-12 19:55:20'),
(55, 'Shikdar Hossen', '[email protected]', '01733455325', 'BW-306648', 1, '13-07-20', 'I would like to inquire about your property BW-306648. Please contact me at your earliest convenience.', '2020-07-12 20:02:07', '2020-07-12 20:02:07'),
(56, 'Sazzad Hossen', '[email protected]', '01733455325', 'BW-810782', 0, '21-09-20', 'I would like to inquire about your property BW-810782. Please contact me at your earliest convenience.', '2020-09-20 19:48:35', '2020-09-20 19:48:35'),
(57, 'Irfan Karim', '[email protected]', '01733499925', 'BW-846585', 0, '21-09-20', 'I would like to inquire about your property BW-846585. Please contact me at your earliest convenience.', '2020-09-20 19:49:13', '2020-09-20 19:49:13'),
(58, 'Ariful Islam', '[email protected]', '01877766677', 'BW-760855', 0, '21-09-20', 'I would like to inquire about your property BW-760855. Please contact me at your earliest convenience.', '2020-09-20 19:53:24', '2020-09-20 19:53:24'),
(59, 'user', '[email protected]', '01878377565', 'BW-989233', 0, '21-09-20', 'I would like to inquire about your property BW-989233. Please contact me at your earliest convenience.', '2020-09-20 20:14:52', '2020-09-20 20:14:52'),
(60, 'Abdul Karim', '[email protected]', '01733099925', 'BW-422013', 0, '05-10-20', 'I would like to inquire about your property BW-422013. Please contact me at your earliest convenience.', '2020-10-04 19:40:10', '2020-10-04 19:40:10'),
(61, 'Khan Arif', '[email protected]', '01877366677', 'BW-936835', 0, '05-10-20', 'I would like to inquire about your property BW-936835. Please contact me at your earliest convenience.', '2020-10-04 19:40:53', '2020-10-04 19:40:53'),
(62, 'user', '[email protected]', '01878377565', 'BW-463561', 0, '05-10-20', 'I would like to inquire about your property BW-463561. Please contact me at your earliest convenience.', '2020-10-04 19:42:30', '2020-10-04 19:42:30'),
(63, 'user', '[email protected]', '01878377565', 'BW-731906', 0, '05-10-20', 'I would like to inquire about your property BW-731906. Please contact me at your earliest convenience.', '2020-10-04 19:42:41', '2020-10-04 19:42:41'),
(64, 'Sakil Ahmed', '[email protected]', '01874532626', 'BW-231343', 0, '15-11-20', 'I would like to inquire about your property BW-231343. Please contact me at your earliest convenience.', '2020-11-15 05:14:49', '2020-11-15 05:14:49'),
(65, 'jahed H Hossen', '[email protected]', '+8801733455325', 'BW-192366', 1, '15-11-20', 'I would like to inquire about your property BW-192366. Please contact me at your earliest convenience.', '2020-11-15 05:15:50', '2020-11-15 05:15:50'),
(66, 'user', '[email protected]', '01878377565', 'BW-661517', 1, '19-11-20', 'I would like to inquire about your property BW-661517. Please contact me at your earliest convenience.', '2020-11-19 04:01:32', '2020-11-19 04:01:32'),
(67, 'jahed H Hossen', '[email protected]', '+8801733455325', 'BW-390842', 1, '19-11-20', 'I would like to inquire about your property BW-390842. Please contact me at your earliest convenience.', '2020-11-19 04:29:29', '2020-11-19 04:29:29');
-- --------------------------------------------------------
--
-- Table structure for table `migrations`
--
CREATE TABLE `migrations` (
`id` int(10) UNSIGNED NOT NULL,
`migration` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`batch` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `migrations`
--
INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES
(1, '2014_10_12_000000_create_users_table', 1),
(2, '2014_10_12_100000_create_password_resets_table', 1),
(3, '2019_08_19_000000_create_failed_jobs_table', 1),
(4, '2019_11_06_075920_create_admins_table', 1),
(5, '2020_04_17_213215_create_users_table', 2),
(6, '2020_04_29_132831_create_cities_table', 3),
(7, '2020_04_29_143441_create_subcities_table', 4),
(8, '2020_04_30_205511_create_user_properties_table', 5),
(9, '2020_05_02_135401_create_coupons_table', 6),
(10, '2020_05_02_155931_create_newsletters_table', 7),
(11, '2020_05_02_191336_create_post_category_table', 8),
(12, '2020_05_02_210021_create_posts_table', 9),
(13, '2020_05_06_080358_create_sitesetting_table', 10),
(14, '2020_05_08_100357_create_contacts_table', 11),
(15, '2020_05_13_205639_create_wishlists_table', 12),
(16, '2020_05_28_150243_create_interested_properties_table', 13),
(17, '2020_11_17_151750_create_orders_table', 14);
-- --------------------------------------------------------
--
-- Table structure for table `newsletters`
--
CREATE TABLE `newsletters` (
`id` bigint(20) UNSIGNED NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `newsletters`
--
INSERT INTO `newsletters` (`id`, `email`, `created_at`, `updated_at`) VALUES
(1, '[email protected]', '2020-05-02 16:31:44', '2020-05-02 16:31:44'),
(2, '[email protected]', '2020-05-02 16:33:33', '2020-05-02 16:33:33'),
(3, '[email protected]', '2020-11-02 02:28:20', '2020-11-02 02:28:20');
-- --------------------------------------------------------
--
-- Table structure for table `orders`
--
CREATE TABLE `orders` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` bigint(20) UNSIGNED DEFAULT NULL,
`property_Id` bigint(20) UNSIGNED DEFAULT NULL,
`amount` double DEFAULT NULL,
`status` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`transaction_id` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`currency` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `orders`
--
INSERT INTO `orders` (`id`, `user_id`, `property_Id`, `amount`, `status`, `transaction_id`, `currency`, `created_at`, `updated_at`) VALUES
(9, 2, 105, 500, 'Processing', '5fb3e3528bb32', 'BDT', '2020-11-17 14:50:58', '2020-11-17 14:50:58'),
(10, 2, 106, 500, 'Processing', '5fb3e8654e862', 'BDT', '2020-11-17 15:12:37', '2020-11-17 15:12:37'),
(11, 2, 107, 500, 'Failed', '5fb3e9e9b5da5', 'BDT', '2020-11-17 15:19:05', '2020-11-17 15:19:05'),
(12, 2, 108, 500, 'Done', '5fb3f0874a778', 'BDT', '2020-11-17 15:47:53', '2020-11-17 15:47:53'),
(14, 2, 111, 500, 'Done', '5fb4c9a65453e', 'BDT', '2020-11-18 07:14:08', '2020-11-18 07:14:08'),
(15, 2, 112, 500, 'Done', '5fb5ef08cd5ea', 'BDT', '2020-11-19 04:06:11', '2020-11-19 04:06:11');
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`token` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `password_resets`
--
INSERT INTO `password_resets` (`email`, `token`, `created_at`) VALUES
('[email protected]', '$2y$10$pMl03hVTWEO8PNKmk1IiX.kyFtmr4fH2kFRRU3lXfQ8WfubqmbP1y', '2020-04-25 05:18:10');
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_id` int(11) NOT NULL,
`post_title_en` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`post_title_bn` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`post_image` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`details_en` text COLLATE utf8mb4_unicode_ci NOT NULL,
`details_bn` text COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(2, 5, 'PROTECTING YOUR HOME AGAINST CORONAVIRUS', 'করোনা ভাইরাস থেকে ঘরের সুরক্ষা যেভাবে নিশ্চিত করবেন ।', 'public/media/post/1665749645472915.jpg', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Coronavirus, or Covid-19, just made landfall in Bangladesh. But regardless of its presence in the country or how much it may spread in the future, it is imperative to remember that there is no need to PANIC! According to several organizations like WHO, Even the common influenza is more dangerous than Covid-19 in terms of spread. And in order to protect yourself and your family, all you need to do is follow a few precautions – starting with your home which will drastically reduce your chances of contracting the Covid-19. However, there is a<a href=\"https://www.nst.com.my/news/nation/2020/03/571957/unicef-malaysia-rings-alarm-bell-fake-covid-19-message\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> lot of misinformation floating around social media</a> regarding this issue such as that the virus is unusually large and cannot survive in a warmer climate – citing UNICEF as the source.<a href=\"https://twitter.com/myUNICEF/status/1235386412112818176\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> All that information, however, is entirely incorrect</a>. So, let’s take a look at a few REAL tips on how to protect your home against coronavirus.</p><figure id=\"attachment_37687\" aria-describedby=\"caption-attachment-37687\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-37687\" src=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" alt=\"Cleaning items\" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-37687\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">There is no need for specialized cleaning equipment to protect your home</figcaption></figure><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">REGULARLY CLEAN “HIGH-TRAFFIC” SURFACES</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">There are a few objects in all our homes that receive greater “traffic” than others, as in, some objects or surfaces are more touched. This includes <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">tables, dining chairs, light switches, toilets, doorknobs, handles, and remotes</i></b>. A lot of people frequently touch these objects throughout the day. As a result, they are at greater risk of coronavirus contamination. That is why, to protect your home against coronavirus, such surfaces need to be cleaned regularly and thoroughly. If necessary, cleaning them once or twice a day will result in the most protection. Store-bought alcohol-based cleaners and detergents are enough to disinfect them.</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">LIMIT SHARING ITEMS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">The exact transmission process of the virus is still being figured out, but they certainly transmit through repository droplets. These droplets can, when sneezed or coughed onto a surface, be picked up by unsuspecting people onto their clothes and all sorts of surfaces. And when these droplets enter the body of a healthy individual – through mouth or nose – they become infected as well. That is why, as a measure of precaution, it is advised to either limit or prohibit the sharing of objects such as <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">dishes, drinking glasses, cups, utensils, or even towels and bedding</i></b> – as they are more susceptible to become carriers of the virus.</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">WASH IMMEDIATELY AFTER USE</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">While it is a good practice by itself, in order to protect your home against coronavirus, washing all your items as soon as you are done using them is a good step to take. The dishes, the utensils – clean them using hot water and soap once you are done with them. There is no need to do anything fancy. Just <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">scrub them really well with soap</i></b> and that’s it. The same goes for laundry, especially if your clothes, towels or bedding have any blood or body fluids. <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Hot water and detergent</i></b> are enough to disinfect them.</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">DISINFECT ELECTRONICS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Often, people forget how dirty or susceptible electronic items such as appliances, phones, laptops, tablets, or even laptops can get. Phones, in particular, constantly remain at our side – whether we are inside or outside. They unintentionally come into contact with a lot of foreign objects and can easily pick up the virus. So, just as we wash our hands and mouths after returning home, our electronic devices should be cleaned as well; especially if you are committed to protecting your home against coronavirus. While soap and water may do the trick, they are hardly appropriate for electronic devices. Instead, <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">use alcohol pads</i></b> to<a href=\"https://www.bproperty.com/blog/clean-home-appliances/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> clean home appliances</a> and electronics, which are better as a cleaning agent and they work as a disinfectant as well.</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">MOP THE FLOORS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Mopping the floors of our homes is a regular practice here in Bangladesh, but to really protect your home against coronavirus, you need to take a step further. Even though there is a low probability of picking up the virus from the floor, it is always better to be safe than sorry. As it stands, most floors are washed using only water and not even soapy water, which leaves them vulnerable. So, to truly clean the floors, start mixing <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">antiseptic disinfectants</b> into the water used. This will clear out not only any hint of Covid-19 but also most other germs.</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">CLEAN THE CLEANING EQUIPMENT</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Reusing “dirty” cleaning equipment such as sponges and mops may do more harm than help and can accidentally help spread viruses. An item that was used to clean a vulnerable or infected surface may still have residue left on it. That is why the items themselves need to be <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">rinsed and washed using hot water and then dried using heat</i></b>.</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">PET CARE</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Pets are one of the members of our family and we try our<a href=\"https://www.bproperty.com/blog/create-pet-friendly-apartment/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> best to make them feel that as well</a>. But unfortunately, pets can be carriers of Covid-19 without anyone knowing. And, there have been some reports of dogs being infected with the virus as well. So, to protect your home against coronavirus, pet care needs to be taken into account as well. Bathing your beloved cat or dog every day is a good start, and not just with water. Try to <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">use soap and proper disinfectant</i></b> to make sure you and your pet are safe. Furthermore, it is also advised not to let your dog play with unfamiliar or infected individuals.</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">LIMIT OUTSIDERS</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Limiting the number of people you let into your home may not be an ideal, but it can be an effective move to protect your home against the virus. The incubation period for Covid-19 is between 2 and 14 days. Even then, the symptoms may not outright signify the virus. As such, <b style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">limiting outsiders</i></b> can be a necessary protective move for the time being.</p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Bangladesh had been ranked as one of the most vulnerable countries against coronavirus in recent times, and the virus has now made its presence well. But it is important to understand that this coronavirus is preventable with just a bit of precaution. So, take the measures mentioned here from today and start protecting your home against Covid-19.</p>', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">কোভিড-১৯, যা নভেল করোনা ভাইরাস নামে পরিচিত, ইতিমধ্যে যা বাংলাদেশে ছড়িয়ে পরতে শুরু করেছে। সোশ্যাল মিডিয়ায় নানাভাবে অতিরঞ্জিত খবর ছড়িয়ে পরার কারনে সবাই ভীষণ ভয়ে দিন পার করছেন। যদিও বুঝে কিংবা না বুঝে অধিকাংশ মানুষই আতঙ্কগ্রস্ত হয়ে পরছেন। কিন্তু এতোটা আতঙ্কিত না হলেই বরং পরিস্থিতি অনিকূলে থাকবে। ঘাবড়ে যাবার কিছু নেই। করোনা ভাইরাস প্রতিরোধে আতঙ্কের চেয়ে সচেতনতাই অনেক বেশি কার্যকরী। ডব্লিউএইচও (WHO) এর মতো সংস্থাগুলো বলেছে, দ্রুত ছড়িয়ে পরার ক্ষেত্রে ইনফ্লুয়েঞ্জা, কোভিড-১৯ এর চেয়ে বেশি বিপজ্জনক। সুতরাং, করোনা নিয়ে ভয় পাবার কিছু নেই। তবে সতর্কতা অবশ্যই প্রয়োজন। আর তাই, নিজেকে এবং নিজের পরিবারকে সুরক্ষিত করার জন্য এই কয়েকটি গুরুত্বপুর্ণ সতর্কতা অনুসরণ করা উচিত। করোনা ভাইরাস থেকে ঘরের সুরক্ষা নিশ্চিত করতে, এই কয়েকটি উপায় অবলম্বন করলেই আপনি করোনার আধিপত্য থেকে নিরাপদ থাকতে পারবেন। তবে তার আগে, করোনা সম্পর্কে সঠিক এবং ভুল তথ্য কোনটি সেটি আপনাকে নিশ্চিত হতে হবে। যেমন, করোনা ভাইরাসকে নিয়ে ভুল একটি ধারণা হল, উষ্ণ জলবায়ুতে এই ভাইরাসটি টিকে থাকতে পারে না। এরকম ভুল তথ্যে আস্থা রাখা যাবে না। তথ্যের উৎস যাচাই বাছাই করে নিয়ে তবেই বিশ্বাস করবেন। এবার, তাহলে চলুন করোনা ভাইরাস থেকে ঘরের সুরক্ষা কিভাবে নিশ্চিত করবেন সে সম্বন্ধে জানা যাক!</p><figure id=\"attachment_37687\" aria-describedby=\"caption-attachment-37687\" class=\"wp-caption alignnone\" style=\"margin-top: 40px; margin-bottom: 40px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-37687 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg\" alt=\"পরিষ্কারক আইটেম \" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/cleaning-3977589-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-37687\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">সুরক্ষা এখন নিজেদের হাতেই</figcaption></figure><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">কমন স্পেসগুলো নিয়মিত পরিষ্কার করুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">আমাদের ঘরের এমন কিছু জিনিস বা জায়গা আছে যেগুলো, সারাদিনে বেশি ব্যবহৃত হয়ে থাকে। সেগুলোর প্রতি আপনাকে মনোযোগী হতে হবে। যেমন, টেবিল, ডাইনিং চেয়ার, ইলেকট্রিক সুইচ, টয়লেট, ডোর নবস, হ্যান্ডেল এবং রিমোট। সারা দিনে এই জিনিসগুলো ঘরের সবাই বার বার স্পর্শ করে থাকে। যার ফলে ঘরের এই সমস্ত জিনিসে করোনা ভাইরাস ছড়িয়ে পরার সম্ভাবনা বেশি থাকে। এইজন্য এগুলো নিয়মিত পরিষ্কার করা উচিত। খুবই ভালো ফলাফল হয় যদি দিনে দু-একবার এগুলো পরিষ্কার করা যেত। এগুলো পরিষ্কার করার জন্য যেকোন দোকান থেকে অ্যালকোহল বেইসড লিকুইড ক্লিনার দিয়ে পরিষ্কার করে জীবাণু মুক্ত করতে পারেন।</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc; text-align: justify;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">অপর ব্যক্তির কিছু ব্যবহার করবেন না</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">এই ভাইরাস মানুষের ফুসফুসে সংক্রমণ ঘটিয়ে থাকে এবং শ্বাস প্রশ্বাসের মাধ্যমেও একজনের থেকে আরেকজনের দেহে ছড়িয়ে পরে। সাধারণ ফ্লু বা ঠান্ডা লাগার মতোই এই ভাইরাস ছড়ায় হাঁচি বা কাশির মাধ্যমে। থুতু ফেলার সময়ও আপনাকে হতে হবে সাবধান। ভাইরাসটি নতুন হওয়াতে এখনই এর কোনো টিকা বা প্রতিষেধক আবিষ্কার হয়নি। এমনকি এমন কোনও চিকিৎসাও নেই, যা এ রোগ ঠেকাতে পারে। তাই এই রোগ থেকে নিজেকে সুরক্ষিত রাখতে অন্যের প্লেট, চশমা, কাপ, তোয়ালে, ব্যক্তিগত জিনিস এমনকি অন্যের বিছানা ব্যবহার কিংবা আশেপাশে যাওয়া, এ সকল কিছু এখন থেকেই কমিয়ে দিতে হবে। একে অপরের সংস্পর্শে থাকা সম্পূর্ণ কমিয়ে দিতে হবে।</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc; text-align: justify;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">সাবান দিয়ে ভালো মত ধুয়ে নিন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">করোনা ভাইরাস থেকে সুরক্ষা পেতে চাইলে, আপনার ব্যবহারের সবকিছু সাথে সাথে ধুয়ে ফেলুন। গরম পানি ব্যবহার করে সাবান বা লিকুইড সোপ দিয়ে সাথে সাথে ধুয়ে নিন। বেশি কিছু করবার প্রয়োজন নেই, সাবান দিয়ে অল্প কিছুক্ষণ ঘষে মেজে, তারপর গরম পানি দিয়ে ধুয়ে নিন। আপনার ব্যবহারের লন্ড্রি কাপড় কিংবা বিছানার চাদর একইভাবে গরম পানি আর ডিটারজেন্ট দিয়ে ভিজিয়ে রেখে ধুয়ে ফেলুন। গরম পানি আর ডিটারজেন্ট, যেকোন জীবাণু ধ্বংসের জন্য যথেষ্ট।</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc; text-align: justify;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">ইলেকট্রনিক্সের জিনিসগুলো পরিষ্কার রাখুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">হোম অ্যাপ্লায়েন্সগুলো অবশ্যই পরিষ্কার রাখুন। আপনি চাইলে এগুলো ঘরোয়া উপায়ে পরিষ্কার করতে পারেন। তার জন্য আছে নানা রকমের <a href=\"https://www.bproperty.com/blog/bn/%E0%A6%B9%E0%A7%8B%E0%A6%AE-%E0%A6%85%E0%A7%8D%E0%A6%AF%E0%A6%BE%E0%A6%AA%E0%A7%8D%E0%A6%B2%E0%A6%BE%E0%A6%AF%E0%A6%BC%E0%A7%87%E0%A6%A8%E0%A7%8D%E0%A6%B8-%E0%A6%AA%E0%A6%B0%E0%A6%BF%E0%A6%B7%E0%A7%8D%E0%A6%95%E0%A6%BE%E0%A6%B0/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">কার্যকরী টিপস</a>। হোম অ্যাপ্লায়েন্স ছাড়াও আরও বেশ কিছু অনুষঙ্গ আছে যেগুলো নিয়ে আমরা প্রতিনিয়ত ঘরে এবং বাইরে দৌড়াই। এবং ঘর পরিষ্কারের পাশাপাশি ঘরের ইলেক্ট্রনিক্সগুলো পরিষ্কার করতেও ভুলে যাই। যেগুলো হল, ফোন, ল্যাপটপ, ট্যাবলেট ইত্যাদি। এগুলো নিয়ে আমরা বাইরে অনেক জায়গায়ই ঘোরাফেরা করি। সুতরাং এগুলোর মাধ্যমেও এই ভাইরাসটি আমাদের ঘরে এবং দেহে প্রবেশ করতে পারে। এইজন্য এগুলো অ্যালকোহল প্যাড দিয়ে পরিষ্কার করুন। এবং সময় সময় খেয়াল রাখুন যে আবার পরিষ্কার করা প্রয়োজন কিনা।</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc; text-align: justify;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">ঘরের মেঝে পরিষ্কার করুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">করোনা ভাইরাস থেকে ঘরের সুরক্ষা নিশ্চিত করতে ঘরের মেঝে নিয়মিত সাবান দিয়ে পরিষ্কার করুন। মেঝে থেকে এই ভাইরাস ছড়ানোর সম্ভাবনা কম হলেও সাবধান থাকাটাই সবচেয়ে নিরাপদ। সেভলন অ্যান্টিসেপটিক পানির সাথে মিশিয়ে ঘরের মেঝে মুছে নিন। শুধু কোভিড -১৯ নয়, অন্যান্য রোগ জীবাণু থেকেও আপনি অচিরেই মুক্তি পেয়ে যাবেন।</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc; text-align: justify;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">ধোয়ামোছার জিনিসগুলো পরিষ্কার করুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">একবারের ব্যবহারের পোঁছাটি পুনরায় ব্যবহার করার জন্য এই ভাইরাসটি আবার ছড়িয়ে যেতে পারে। সুতরাং ব্যবহারের পোঁছা, স্পঞ্জ এবং মোপসগুলো গরম পানি ব্যবহার করে সাবান দিয়ে ভালোমত পরিষ্কার করে নেওয়া উচিত। দেখা গেল, পরিষ্কার হয়ে যাওয়া জীবাণুগুলো আবারও ঘরের থেকে গেল। সেজন্য প্রচুর সাবধানতা অবলম্বন করতে হবে। প্রয়োজন হলে ধুয়ে ফেলা পোঁছা গুলো তাপের সাহায্যে শুকিয়ে নিতে হবে।</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc; text-align: justify;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">পোষ্য প্রাণীটির যত্ন নিন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">আমাদের সবচেয়ে প্রিয় এবং বেশ আদুরে হল এই পোষ্য প্রাণীগুলো। কিন্তু কষ্টের হলেও, এটাই সত্যি যে এই নিরিহ প্রাণীগুলোও এই ভাইরাসের বাহক হতে পারে। তথ্যে আছে, ইতিমধ্যে কিছু পোষ্য প্রাণীর দেহে করোনা ভাইরাসের সন্ধান পাওয়া গেছে। তাই তাদের প্রতি রাখতে হবে বিশেষ খেয়াল। আপনার পোষা সব প্রাণীকেই কুসুম গরম পানি এবং সাবান দিয়ে ভালো মত গোসল করান। আরও ভালো হয় জীবাণুনাশক ব্যবহার করলে। এমন সময়ে এই পোষ্য প্রাণীগুলো নিয়ে বাসার বাইরে বের না হওয়াই শ্রেয়।</p><ul style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; list-style-position: initial; list-style-image: initial; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit; list-style-type: none;\"><ul style=\"margin: 0.5em 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; list-style: disc; text-align: justify;\"><li style=\"margin: 0px 0px 0.5em; padding: 0px 0px 0px 5px; border: 0px; vertical-align: baseline; font-family: inherit;\"><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial;\">অতিথি আগমন কমিয়ে ফেলুন</h2></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul></li></ul><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">ঘরের ভেতর বাইরের মানুষদের আনাগোনা যতটুকু সম্ভব কমিয়ে আনুন। এই ভাইরাসটির অণ্ডস্ফুটন সময়কাল হচ্ছে ২ থেকে ১৪ দিন সুতরাং এই সময়কালে ঘরের ভেতর বাইরের মানুষ না আনাই শ্রেয়। করোনা ভাইরাস থেকে ঘরের সুরক্ষা নিশ্চিত করতে আপনাকে এতটুকু করতেই হবে। কেননা নিজের ও ঘরের সকলের নিরাপত্তা সবকিছুর উর্ধ্বে।</p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">সাম্প্রতিক সময়ে করোনা ভাইরাসে আক্রান্ত দেশগুলো মধ্যে ইতিমধ্যেই বাংলাদেশ তার নাম লিখিয়েছে এবং দেশে এই ভাইরাসে আক্রান্ত রোগীর সংখ্যা ক্রমশ বাড়ছে। এবং এমন অবস্থায় শুধুমাত্র নিজস্ব সাবধানতা দ্বারা এই সমস্যা মোকাবেলা করা সম্ভব। সুতরাং, আজ থেকে বরং এখান থেকেই এই উল্লিখিত ব্যবস্থা গ্রহণ করুন এবং কোভিড -১৯ এর বিরুদ্ধে আপনার সুরক্ষা নিশ্চিত শুরু করুন। </span></p>', '2020-05-03 16:11:40', '2020-05-03 16:11:40');
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(3, 6, 'TIPS FOR WORKING FROM HOME DURING RAMADAN', 'হোম অফিস- রোজা রেখে যেভাবে কাজ করবেন!', 'public/media/post/1665749623372059.jpeg', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The holy month of</span><a href=\"https://www.bproperty.com/blog/staying-healthy-ramadan/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Ramadan has just begun</span></a><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">. Muslims all over the world are set to spend the holy month with all sorts of generous activities. However, this year is going to be radically different due to the</span><a href=\"https://www.bproperty.com/blog/protect-home-coronavirus/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">coronavirus outbreak</span></a><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">. And as most people have already opted to work from home, fasting, working, and maintaining a healthy lifestyle amid this calamity can be challenging. Although you may face some challenges, it is certainly not an impossible task to maintain a balanced lifestyle. That being said, here are 5 tips for working from home during Ramadan.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">GET ENOUGH SLEEP</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269.jpg\" alt=\"cushion and bed sheets\" width=\"1440\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Want to get things done? Proper sleep is key</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">A lot of people tend to sleep only after having Sehri. This allows them to sleep for only a short period of time. This practice is bad for your body as well as your health. Consistently losing sleep can reduce your ability to work effectively and efficiently. Working from home requires a lot of physical and mental stamina. If you don’t get enough sleep, chances are you will be exhausted and will lose the ability to think and make decisions properly. Among other things, losing sleep can cause temporary memory loss, limit your cognitive ability, and also lead to an unhealthy life. So getting the right amount of sleep is absolutely essential while working from home during Ramadan.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">STAY IN TOUCH</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999.jpg\" alt=\"red handset with red wire\" width=\"1440\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">There is no alternative to good communication</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Be it for official purposes or for fun, there is no chit-chatting with your colleagues when you are working from home. All you have is technology and staying connected with your co-workers is more important now than ever. Plan ahead, keep a checklist of what you need to talk to your co-workers about every day. Start your day off with a short but effective meeting. Spend at least 10 minutes talking with each team member and getting updated on everyone’s situation. Always be available during office hours so that others can find you easily. There is no alternative to good communication practices.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">DON’T SIT FOR LONG</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314.jpg\" alt=\"A laptop and smartphones on a table\" width=\"1440\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Taking small breaks when working for long hours can actually improve your efficiency</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">It may seem challenging to concentrate for a long period of time while fasting. It is normal to have such problems on an empty stomach. That is why take a 5 minutes break every 30 minutes. Take a walk around the house, engage in little talks with your family members. Spending some time with your pets (if you have any) or</span><a href=\"https://www.bproperty.com/blog/tips-relaxing-balconies/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">in the balcony can be great for a short respite</span></a><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">. You will notice a significant difference in your working efficiency and also your concentration will improve. For a more effective result, you can use the ‘Pomodoro Technique’. This technique breaks down the task into intervals, traditionally 25 minutes in length. Take 3-5 minutes break every 25 minutes and after the completion of 100 minutes, take a 15-20 minutes break then get back to work again. This technique is very effective in terms of efficiency and concentration.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">SET BOUNDARIES</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584.jpg\" alt=\"A laptop, book, smartphone, and a mice is chained on a table\" width=\"1440\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Seclude yourself from your family members during office hours</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Working with the presence of children can be really challenging. Kids with all their frenzied activities can deviate you from your regular schedule. Since the educational institutions are locked down and you are home with your kids, the only way to get things done in this situation is to seclude yourself by setting boundaries. Communicate with your family members and tell them not to disturb you during working hours. Restrict access to your home office. Hang a sign if you need to but let them know that it is crucial for you to be secluded.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">TAKE BREAKS FOR PRAYER</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/quran-36704.jpg\" alt=\"The holy Quran\" width=\"1440\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Don’t forget to take prayer breaks</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Most offices usually reduce their working hours during Ramadan every year. This year is no different. Ramadan is a month of fasting, prayer, and reflection. Not only do we refrain ourselves from food, but also we restrict ourselves from all sorts of sinful activity. Build a ‘prayer first’ mentality and engage in all sorts of acts of worship such as charity, reciting the Quran, prayer, and so on. In order to maintain a perfect balance between your work, prayer, and household activities, there is no alternative to proper planning.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Other than that, ensuring the</span><a href=\"https://www.bproperty.com/blog/world-day-safety-health-work/\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> <span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">safety and security of your workplace at home</span></a><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> is also completely in your hands. With these in mind, follow these methods to get things done while working from home during Ramadan. Do let us know in the comments below if you find the article to be helpful.</span></p>', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">শুরু হয়ে গেছে <a href=\"https://www.bproperty.com/blog/bn/38343-autosave-v1/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">পবিত্র মাহে রমজান</a>। অনেকেই বলেন রোজা রেখে কাজ করা যায় না। এই কথা কিন্তু সম্পূর্ণ ঠিক নয়। কিছু বিষয় মেনে চললে রোজা রেখেও পুরোদমে অফিসে কাজ করা সম্ভব। পবিত্র রমজানের মহত্ব অনেক কিন্তু অনেকেই আমরা তার ফলাফল গ্রহণ করতে পারি না। কোভিড-১৯ এর উত্তাপে আমরা এখন সবাই ঘর বন্দি। ঘরে বসে করতে হচ্ছে রাজ্য দেখাশোনা। অর্থাৎ যত কাজ চলছে ঘরে বসেও। রোজার মাসেও এর কোন ব্যাতিক্রম নেই। রোজা রেখেও আমরা সুন্দর ভাবে কাজ করতে পারি চলুন জেনে নেই রোজা রেখে যেভাবে কাজ করবেন !</p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">সঠিক পরিমাণে ঘুম</h2><figure id=\"attachment_38505\" aria-describedby=\"caption-attachment-38505\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38505 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269.jpg\" alt=\"বালিশ\" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/white-bed-comforter-212269-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38505\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">প্রয়োজন মত ঘুম</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">রোজার মধ্যে অনেকেই আছেন যারা একবারে সেহরি খেয়ে ঘুমান। এটা শরীরের জন্য কোনভাবেই ভালো নয়। একসাথে বেশি দিন রাতে না ঘুমালে কখনো আপনি টানা কাজ করতে পারবেন না। হোম অফিসে আমাদের সকলেরই টানা কাজ করতে হয়। যেখানে কেবল কয়েক মিনিটের ব্রেক থাকে। রাতে ঘুম না হওয়ার কারণে কাজে অনেকের মাথা ঠিক মত কাজ করে না, অনেক কিছু মন থেকে হারিয়ে যায় আবার অনেক সময় কিছু কথা অনেকে বুঝতেও পারে না। এছাড়াও শারীরিক অসুস্থতা অনেকটা বেড়ে যায়। তাই পর্যাপ্ত পরিমাণে ঘুমাতে হবে।</p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">যোগাযোগে পারদর্শী হোন</h2><figure id=\"attachment_38504\" aria-describedby=\"caption-attachment-38504\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38504 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999.jpg\" alt=\"টেলিফোন \" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/marketing-office-working-business-33999-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38504\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">যোগাযোগ করুন</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">হোম অফিস এখন টেক বেইসড। অর্থাৎ আপনাকে সব কাজ বা যোগাযোগ ডিভাইসের মাধ্যমে করতে হচ্ছে, কে কি করছেন এবং কখন তা শেষ হবে সবকিছুই আপনি জানতে পারবেন সঠিকভাবে যোগাযোগের মাধ্যমে। অফিসে যেকোন কাজ খুব সহজেই হয়ে যেত, কেননা আপনার সহকর্মী আপনার পাশেই বসা ছিল কিন্তু এখন প্রেক্ষাপট ভিন্ন। তাই বলে হেরে যাবার কিছু নেই। দিনের শুরুতেই কে কি কাজ করছেন তার তালিকা তৈরি করুন শেয়ার করুন একে অপরের সাথে। কাজ শুরুর আগে ১০ মিনিট কথা বলুন সবার সাথে এটা গ্রুপ কলে সহজেই সম্ভব। নিজ নিজ টিমের সাথে আলাপ করে কাজ বুঝে তারপর কাজ শুরু করুন। সবাই অফিস সময়ে অনলাইনে অ্যাকটিভ থাকুন যাতে করে অন্য কারও আপনাকে খুঁজে সময় নষ্ট করতে না হয়। রোজা রেখে হোম অফিসের এই দিনে যোগাযোগের কোন বিকল্প নেই।</p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">একটানা বসে থাকবেন না</h2><figure id=\"attachment_38503\" aria-describedby=\"caption-attachment-38503\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38503 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314.jpg\" alt=\"ল্যাপটপ \" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/macbook-pro-684314-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38503\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">ছোট ব্রেক নিন</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">রোজা রেখে টানা কাজ করলে অনেকক্ষণ মনোযোগ ধরে রাখা যায় না। খালি পেটে এমন সমস্যা হওয়াটাই স্বাভাবিক। তাই প্রতি ৩০ মিনিট কাজ করার পর ৫ মিনিটের ব্রেক নিন, মনোযোগ একটু অন্যদিকে ঘুরিয়ে নিন। একটু হেঁটে আসুন পরিবারের সকলের সাথে কথা বলে নিন।<a href=\"https://www.bproperty.com/blog/bn/%E0%A6%B0%E0%A6%BF%E0%A6%B2%E0%A6%BE%E0%A6%95%E0%A7%8D%E0%A6%B8%E0%A6%BF%E0%A6%82-%E0%A6%AC%E0%A7%87%E0%A6%B2%E0%A6%95%E0%A6%A8%E0%A6%BF/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> বারান্দায় ঘুরে আসতে পারেন</a>। এভাবে ৫-৬ মিনিট পর আবার কাজে ফিরে আসুন। দেখবেন আবারও গভীর মনোযোগে কাজ করতে পারছেন। তার জন্য আপনি “পমোডরো টেকনিক” ব্যবহার করতে পারেন। প্রতিটি কাজের সেশনকে ১০০ মিনিটে ভাগ করুন। তারপর প্রথম তিন ভাগ, অর্থাৎ ২৫ মিনিট করে ৭৫ মিনিটে ৩ বার ৫ মিনিট করে বিরতি নিন। ৪র্থ ভাগের পর অর্থাৎ ১০০ মিনিট পার হয়ে গেলে ১৫-২০ মিনিটের একটি বিরতি নিন। তারপর আবার কাজ শুরু করুন। এতে মাথার ওপর চাপ কম পড়বে, এবং কাজ করতে কষ্টও হবে না। সেইসাথে পূর্ণ মনোযোগও বজায় থাকবে।</p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">পরিবারের সদস্যদের আনাগোনা কমিয়ে আনুন</h2><figure id=\"attachment_38507\" aria-describedby=\"caption-attachment-38507\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38507 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584.jpg\" alt=\"ল্যাপটপ \" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/black-android-smartphone-on-top-of-white-book-39584-300x188@2x.jpg 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38507\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">সময় বেছে নিন</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">যে পরিবারে ছোট বাচ্চা আছে সেখানে কাজ করাটা অবশ্যই কঠিন। এখন সবাই আমরা বাসায়, অফিস স্কুল সবকিছু বন্ধ। তাই নিজেকে একাত্ত ভাবে অফিসের কাজে নিয়জিত করে মনোযোগ দিয়ে কাজ করলেই এই সব সমস্যার সমাধান সহজে পাওয়া সম্ভব। তাই পরিবারের সকলের সাথে আগেই কথা বলে নিন, কাজের সময়টা তাদের সাথে পরিষ্কার করে নিন। এবং বুঝিয়ে দিন যে আপনি যখন অফিসের কাজ করবেন তখন আপনার দরজা বন্ধ থাকবে এবং কোনভাবেই যেন আপনাকে বিরক্ত না করে হয়। অফিস সময় পরে তারা সবকিছুতেই আপনাকে পেতে যাচ্ছে তাই এই সময়টা অন্তত আপনাকে একা থাকতে দিতে হবে। কারন কখন আপনাকে ভিডিও কলে মিটিং করতে হবে আবার কখন কথা বলতে হবে এইসব বলা যায় না। তাই আগে থেকেই এইসব করে রাখতে হবে।</p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">নামাজ ব্রেক নিন</h2><figure id=\"attachment_38506\" aria-describedby=\"caption-attachment-38506\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/quran-36704.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38506 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/quran-36704.jpg\" alt=\"কোরআন শরিফ \" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/quran-36704.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/quran-36704-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/quran-36704-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/quran-36704-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/quran-36704-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38506\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">ইবাদাত করতে ভুলবেন না</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">রোজা মানে মন থেকে নামাজ কালাম পরে আল্লাহ্ ইবাদত করা। তাই এই সময়ে অফিস এবং বাসার সকল কাজ নিজেকেই গুছিয়ে নিতে হবে। কাজের জন্য কখনই নামাজকে পিছানো যাবে না। রমজানে ঠিকমত এবাদত না করলে মনের মধ্যে একটা অস্বস্তি কাজ করে। আর এই অস্বস্তির ফলে কোনওকিছুই ভালো লাগবে না। বিশেষ করে কাজ করতে ভালো লাগবে না। রোজা রেখে নামাজ না পড়ে কাজ করলে সেই কাজে কখনওই ভালোমত মনোযোগ দিতে পারবেন না। কারণ, অবচেতন মনে একটা অপরাধবোধ সব সময়ে কাজ করবে। কাজেই, রোজা অবস্থায় শুধু না খেয়ে থাকার বদলে, অন্যান্য এবাদত গুলোও ঠিকমত করুন। এতে রোজার আসল উদ্দেশ্য ভালোভাবে পূরণ হবে, এবং আপনি কাজও ঠিকমত করতে পারবেন।</p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><a href=\"https://www.bproperty.com/blog/bn/%E0%A6%95%E0%A6%B0%E0%A7%8D%E0%A6%AE%E0%A6%95%E0%A7%8D%E0%A6%B7%E0%A7%87%E0%A6%A4%E0%A7%8D%E0%A6%B0%E0%A7%87-%E0%A6%AA%E0%A7%87%E0%A6%B6%E0%A6%BE%E0%A6%97%E0%A6%A4-%E0%A6%B8%E0%A7%8D%E0%A6%AC%E0%A6%BE%E0%A6%B8%E0%A7%8D%E0%A6%A5%E0%A7%8D%E0%A6%AF-%E0%A6%A8%E0%A6%BF%E0%A6%B0%E0%A6%BE%E0%A6%AA%E0%A6%A4%E0%A7%8D%E0%A6%A4%E0%A6%BE/\" class=\"broken_link\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); text-decoration-line: line-through; transition-duration: 0.25s;\">কর্মক্ষেত্রে স্বাস্থ্য ও নিরাপত্তা</a> এভাবেই আপনাকে নিশ্চিত করতে হবে। এই উপায় গুলো মেনে নিয়ে কাজ করলে আপনি আশানুরুপ ফল পাবেন। রোজা রেখে এভাবে কাজ করলে বেশ সহজেই আপনি হোম অফিসের সকল কাজ সময়মত শেষ করতে পারবেন।</p>', '2020-05-03 16:16:02', '2020-05-03 16:16:02');
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(4, 1, 'THE EFFECT OF CORONAVIRUS ON THE REAL ESTATE AND DEVELOPMENT SECTOR OF BANGLADESH', 'বাংলাদেশ রিয়েল এস্টেট এবং উন্নয়নখাতে করোনা ভাইরাসের প্রভাব', 'public/media/post/1665749411555002.jpg', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">As the <a href=\"https://www.bproperty.com/blog/protect-home-coronavirus/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">coronavirus crisis</a> continues, it may not be wrong to say that the world is probably heading towards a recession. The global economy is all set to take the hit from the calamity and according to the International Monetary Fund (IMF), this is the worst economic crisis since the Great Depression of the 1930s. Share markets in many countries are currently in freefall due to the crisis. The impact of the coronavirus catastrophe on the economy is visible. All the major business sectors including real estate are facing difficulties. Although the real estate sector is sturdier than other markets, the effect of coronavirus on real estate has slowed down the real estate and development sector of Bangladesh. </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">That is to say, the crisis has affected different parts of the real estate sector differently. Here is how the industry is dealing with the ongoing turmoil in Bangladesh.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">PROPERTY PURCHASE</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The fear of the coronavirus has taken over the minds of people from every walk of life. This has also led everyone to adopt a reclusive mentality, where no one is willing to engage in any kind of economic activity including property purchase. Property owners, on the other hand, are also getting affected due to the threat of getting infected. In most countries, the owners are only permitting a limited number of viewers and that too under certain conditions. Some of them are pulling their property off the market altogether in fear. In Bangladesh, however, the effect of coronavirus on real estate has not been worsened that much, but the property owners are becoming less inclined to property viewing than before. Which is only natural amid this crisis. Although the ongoing situation is supposed to affect the primary property market in a big way, in reality, that is not the case. Since these properties are newly constructed and do not have any occupants, the effect is relatively less severe as property transaction is still feasible.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">RENTAL LANDSCAPE</span></h2><figure id=\"attachment_38597\" aria-describedby=\"caption-attachment-38597\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/rent-1.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38597\" src=\"https://www.bproperty.com/blog/wp-content/uploads/rent-1.jpg\" alt=\"To-let sign on a wall\" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/rent-1.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/rent-1-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/rent-1-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/rent-1-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/rent-1-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38597\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">finding a new tenant or renting a new apartment has become really challenging</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Secondary properties or the rental properties of Bangladesh, on the other hand, are facing or will be facing a monumental challenge due to the calamity. Before the crisis, the process was simple, and finding a future tenant before the current tenant moves out was the norm. But in this current scenario, this becomes difficult as well as troublesome, to say the least. The fear of contamination is leading tenants to be reluctant to invite outsiders inside their apartments. </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Furthermore, as the process of moving somewhere else is not so easy, both parties are facing difficulties due to the possibility of getting infected by the virus. This puts tenants in a difficult position where deviating from an existing commitment is not an option for them. The pre-existing standard procedure was to provide an eviction notice month(s) in advance from both landlords and tenants so that there is enough time for the other party to find a replacement. And due to the current situation, the process of finding a new tenant or new home is getting more and more difficult by day’s end.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">CONSTRUCTION SECTOR AND ITS SUBSIDIARY INDUSTRIES</span></h2><figure id=\"attachment_38464\" aria-describedby=\"caption-attachment-38464\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38464\" src=\"https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash.jpg\" alt=\"person holding tool\" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38464\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">if the situation prolongs, the fate of construction industry will be uncertain</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The construction sector and its subsidiaries, on the other hand, are staring at an uncertain future due to the coronavirus pandemic. Although the <a href=\"https://www.bproperty.com/blog/expect-real-estate-sector-2020/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">future is unpredictable</a>, if the current situation continues, the ongoing crisis will undoubtedly take a huge toll on the construction industry. Except for a handful of government development projects, currently, both the construction and real estate industries are at a standstill. Workers from all sorts of industries, including steel, cement, and construction industries, are standing on the edge and with that, the fate of hundreds of businesses is hanging over an uncertain future.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The Steel industry has come to a complete halt due to the shortage of raw materials. Almost 90% of raw materials which were usually imported from the US, Canada, Italy, the UK, and Australia are in complete lockdown state. As a result, the small-to-mid-sized steel factories are on the verge of shutting down. The cement industry is also taking a major hit due to the current situation of the country. And the loss that is caused by the pandemic is expected to be aggravated even further as the production and the supply of raw materials continue to be affected by the coronavirus crisis.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">According to an estimation, the construction sector could lose about $400 million over 1 year due to the Coronavirus. Which, suffice to say, can cause havoc to our country’s economy. All current development projects are suspended until further notice and the fate of construction workers are on the line. All that remains to be seen now is how long it will take Bangladesh to gain back its economic stability.</span></p>', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">এটা নিশ্চিত যে করোনা ভাইরাসের জন্য বিশ্ব মন্দার দিকে এগিয়ে যাচ্ছে। আন্তর্জাতিক মুদ্রা তহবিলের (আইএমএফ) মতে, ১৯৩০ দশকের এটা সবচেয়ে খারাপ অর্থনৈতিক সংকট হতে যাচ্ছে। এই সংকটের কারণে বর্তমানে অনেক দেশের শেয়ার মার্কেটগুলো স্তব্ধ হয়ে আছে। অর্থনীতিতে করোনা ভাইরাস বিপর্যয়ের প্রভাব বেশ স্পষ্টভাবেই দৃশ্যমান। রিয়েল এস্টেটসহ সমস্ত বড় ব্যবসায়িক খাতগুলো এই বিপদের সম্মুখীন হচ্ছে। যদিও রিয়েল এস্টেট খাত অন্যান্য বাজারের তুলনায় শক্তিশালী তবুও, করোনা ভাইরাসের প্রভাব বাংলাদেশের রিয়েল এস্টেট এবং উন্নয়ন খাতে এনেছে এক থমথমে ভাব। বলা চলে, এই করোনা সংকট রিয়েল এস্টেট খাতের বিভিন্ন অংশকে আলাদাভাবে প্রভাবিত করেছে। চলুন এখন আরও বিস্তারিত ভাবে জানি।</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">প্রপার্টি কেনা </span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">করোনা ভাইরাসের ভয়ে প্রতিটি মানুষ তাদের জীবনের খেই হারিয়ে ফেলেছে। এমন মহামারি অবস্থায় যেখানে আপনি নিজের মনকেই শান্ত করতে পারছেন না সেখানে কিভাবে আপনি প্রপার্টিতে বিনিয়োগ করবেন বা প্রপার্টি নিয়ে </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">ভাববেন। </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">অন্যদিকে প্রপার্টি মালিকরাও আক্রান্ত হওয়ার ভয়ে কাজে যাচ্ছেন না হচ্ছন প্রতিনিয়ত ক্ষতিগ্রস্ত। বেশিরভাগ দেশে মালিকরা শুধুমাত্র সীমিত সংখ্যক ক্রেতাদের অনুমতি দিচ্ছেন প্রপার্টি দেখার জন্য তাও বহুশর্তে। তাদের মধ্যে আবার অনেকেই প্রপার্টি বিক্রি করতে নারাজ। বাংলাদেশে পরিস্থিতি এতটা খারাপ হয়নি যদিও তবে প্রপার্টি মালিকরা আগের তুলনায় প্রপার্টি দেখার দিকে ঝুঁকছেন বেশি।</span> <span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">যদিও চলমান পরিস্থিতি প্রাথমিকভাবে প্রপার্টি বাজারকে বড় আকারে প্রভাবিত করবে বলে ধারণা করা হচ্ছে, যদিও বাস্তবে এমনটা হবে না। যে সকল প্রপার্টিগুলো নতুন করে নির্মিত এবং কোনও</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> দখলকারীত্ব </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">নেই সেগুলো নিয়ে লেনদেন করার সম্ভাবনা অনেক বাড়ছে। </span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">ভাড়ার ক্ষেত্রে </span></h2><figure id=\"attachment_38465\" aria-describedby=\"caption-attachment-38465\" class=\"wp-caption alignnone\" style=\"margin-top: 40px; margin-bottom: 40px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/jose-alonso-6ZSzKPHfooU-unsplash.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38465 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/jose-alonso-6ZSzKPHfooU-unsplash.jpg\" alt=\"জানালা \" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/jose-alonso-6ZSzKPHfooU-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/jose-alonso-6ZSzKPHfooU-unsplash-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/jose-alonso-6ZSzKPHfooU-unsplash-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/jose-alonso-6ZSzKPHfooU-unsplash-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/jose-alonso-6ZSzKPHfooU-unsplash-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38465\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">ভাড়া ও ভাড়াটিয়া</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">সেকেন্ডারি প্রপার্টি বা রেন্টাল প্রপার্টি এই দুটো ক্ষেত্রেই প্রপার্টি মালিকদের পড়তে হচ্ছে নানা চ্যালেঞ্জের মুখে। এই অবস্থার আগে প্রক্রিয়াটি সহজ ছিল। এবং বর্তমান ভাড়াটিয়া উঠিয়ে নেওয়ার ক্ষেত্রে নতুন ভাড়াটিয়া খুঁজে পাওয়াটা ছিল সহজ একটি ব্যাপার। কিন্তু এই অবস্থায় বর্তমান ভাড়াটিয়া কখনই নতুন ভাড়াটিয়াকে বাসা দেখতে দিবে না। তাই, অন্য কোথাও যাওয়াটাও এখন সহজ নয়, ভাইরাসে সংক্রামিত হওয়ার কারণে উভয়পক্ষই অসুবিধার মুখোমুখি হতে হচ্ছে। যা ভাড়াটেদের জন্য কঠিন এক পরিস্থিতি।</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> বা</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">ড়িওয়ালা ভাড়াটিয়াকে এক বা দুই মাস পূর্বেই নোটিশ প্রদান করতেন, তখন বাসা আর ভাড়াটিয়া দুটোই খুঁজে পাওয়া যেত বেশ সহজে কিন্তু এখন এমন নয়! করোনা ভাইরাসের প্রভাব বলুন আর বর্তমান পরিস্থিতি!</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> নতুন ভাড়াটে বা নতুন বাসা খুঁজে পাওয়া দিন দিন আরও কঠিন হয়ে উঠছে। </span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">নির্মাণ খাত </span></h2><figure id=\"attachment_38464\" aria-describedby=\"caption-attachment-38464\" class=\"wp-caption alignnone\" style=\"margin-top: 40px; margin-bottom: 40px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38464 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash.jpg\" alt=\"শমিক যন্ত্রপাতি ধরে আছে \" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/christopher-burns-8KfCR12oeUM-unsplash-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38464\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">নির্মাণশৈলী</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">অন্যদিকে, নির্মাণ খাত এবং এর সহায়ক সংস্থাগুলো করোনা ভাইরাস মহামারী জনিত কারণে একটি অনিশ্চিত ভবিষ্যতের দিকে এগিয়ে যাচ্ছে। যদি বর্তমান পরিস্থিতি এমনই অব্যাহত থাকে তবে চলমান সংকট নিঃসন্দেহে নির্মাণ শিল্পকে বিশাল আকারে ক্ষতিগ্রস্থ</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> করবে। এছাড়া হা</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">তে </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">গোনা </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">কয়েকটি </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">সরকারি </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">উন্নয়ন প্রকল্প ব্যতীত বর্তমানে নির্মাণ ও রিয়েল এস্টেট দুটো শিল্পই স্থবির হয়ে পড়েছে। ইস্পাত, সিমেন্ট এবং নির্মাণ শিল্পসহ সব ধরণের শিল্পের শ্রমিকরা এখন ঘরে অবস্থান নিয়েছে। </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">কাঁচামালের অভাবের কারণে ইস্পাত </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">শিল্প</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> এখন পুরোপুরি বন্ধ হয়ে গেছে। সাধারণত মার্কিন যুক্তরাষ্ট্র, কানাডা, ইতালি, যুক্তরাজ্য এবং অস্ট্রেলিয়া থেকে আমদানি করা প্রায় ৯০% কাঁচামাল যা কিনা সম্পূর্ণ লকডাউন অবস্থায় আটকা আছে। ফলস্বরূপ, ছোট থেকে মাঝারি আকারের ইস্পাত কারখানাগুলো বন্ধের পথে। দেশের বর্তমান পরিস্থিতির কারণে সিমেন্ট শিল্পেও বড় ধরনের আঘাত হানছে এবং মহামারীর ফলে যে ক্ষয়ক্ষতি ঘটেছে তা আরও তীব্র হয়ে উঠবে বলে আশা করা যায়। কারণ, করোনা ভাইরাসের প্রভাব এর ফলে কাঁচামাল উৎপাদন ও সরবরাহ এখন বন্ধ রয়েছে।</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">অনুমান করা যায়, করোনা ভাইরাসের কারণে ১ বছর ধরে নির্মাণ খাত প্রায় ৪০০ মিলিয়ন ডলার হারাতে পারে। যা বলার অপেক্ষা রাখে না, আমাদের দেশের অর্থনীতিতে কি রকম বিপর্যয় ডেকে আনতে পারে। সমস্ত বর্তমান উন্নয়ন প্রকল্পগুলো পরবর্তী নির্দেশ না দেওয়া পর্যন্ত স্থগিত রাখা হয়েছে যার সাথে নির্মাণ শ্রমিকদের ভাগ্য ও রিজিক জড়িত। এখন দেখার বিষয় এই যে, বাংলাদেশকে তার অর্থনৈতিক স্থিতিশীলতা ফিরে পেতে কেমন সময় লাগবে!</span></p>', '2020-05-03 16:19:14', '2020-05-03 16:19:14');
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(6, 6, 'HOW TO MAKE HAND SANITIZER AND DISINFECTANT AT HOME', 'ঘরে বসেই হ্যান্ড স্যানিটাইজার ও জীবাণুনাশক বানানোর উপায়', 'public/media/post/1665881395262554.jpg', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">In December 2019, the entire world became acquainted with a novel virus named Corona. Although there is no cure for this deadly disease called Covid-19 caused by the virus, there are ways to prevent it. You can avoid the infection by staying indoors and keeping yourself clean. At the same time, it is necessary to <a href=\"https://www.bproperty.com/blog/protect-home-coronavirus/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">keep everything in the house sterile</a> as well. That is why hand sanitizers and disinfectants are two of the most in-demand items right now. A sanitizer is a very effective solution to disinfecting your hands when you have less chance of washing your hands with soapy water while outdoors.</span></p><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920.jpg\" alt=\"A mask, a hand sanitizer, and gloves\" width=\"1440\" height=\"960\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Hand sanitizers and disinfectant are absolutely essential in order to keep you, your family, and home safe</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">On the other hand, disinfectants have become essential for your house. So far we know that this deadly virus can survive for three hours in the air, four hours on copper, 24 hours on cardboard, and two to three days on plastic and stainless steel. So, it is very important to keep everything clean especially when you are bringing things home from outside. Besides, it is important to keep the door handle, floor of the house, etc. neat and clean.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Due to the high demand, these two essential items are running out of stock as soon as they hit the market. That is why many people are returning home empty-handed from the market. Now a quick question for you: what will you do if you ever get into this kind of situation? Will you rush to the market, again and again, to buy these high demanded products even if the chances of getting these are really low? Is there another option available? Yes! There is. </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Today we will discuss this “other option”. Let’s find out how you can easily make hand sanitizer and disinfectant at home.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">HOW TO MAKE HAND SANITIZER AT HOME</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862.jpg\" alt=\"People using hand sanitizer\" width=\"1440\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">The process of making hand sanitizer is simple and easy</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Isopropyl alcohol is easily available and you will find it at most hardware stores. Look for a mixture that contains 90% isopropyl alcohol or rubbing alcohol.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">To make hand sanitizer at home, first, take 650 ml of isopropyl alcohol in a bottle. Add 2 ml of hydrogen peroxide. Then add 15 ml glycerin to the mixture. And lastly, add 200 ml of distilled water. If you are not a fan of how alcohol smells, add 25/30 ml of perfume or essential oil (any kind) to rid it of the odor. Mix all the ingredients well and use in a spray bottle. (Source: WHO)</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Be it indoors or outdoors, always keep hand sanitizer with you. Use it on your hands every 1 hour. Keep yourself and everyone around you safe. </span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">HOW TO MAKE DISINFECTANT</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Bleaching powder is easily one of the most available products in the market. According to the Ministry of Health, making a disinfectant out of bleaching powder is very simple. There are two types of disinfectants that you can make: Highly-concentrated disinfectant and Low-concentration disinfectant. </span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">CREATING HIGHLY-CONCENTRATED DISINFECTANT</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The ration for Highly-concentration disinfectant has to be 1:10.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The process is simple; in a container</span> <span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">add 2 tablespoons of bleaching powder with 1 liter of water. Wait for 30 minutes and let it mix with the water. Store this highly-concentrated disinfectant solution in a sealed container.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Keep in mind that this disinfectant is not for your everyday use. It is commonly used to disinfect highly contaminated waste, hospital waste, and Covid-19 infected patients. </span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">CREATING LESS-CONCENTRATED DISINFECTANT</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">According to the health agency, the ration for the Less-concentrated disinfectant has to be 1:100.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">To make a Less-concentrated disinfectant solution, add 1 tablespoon of bleaching powder with 20 liters of water and properly mix the solution in a container. Seal it away for 30 minutes. Get rid of the sediment at the bottom and store the transparent solution in a sealed container. </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">This is the disinfectant that you will be using every day. Use it to disinfect floor, furniture, household items, door handles, cars, and so on. (Source: Ministry of Health)</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Caution and proper awareness are the keys to deal with this corona situation. Don’t rush out to the market for the essentials that you can easily make or prepare at home. And the extra money that you can save from making these instead of buying them can be used to help low-income people.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Don’t forget to let us know if you find this article helpful. Stay home, stay safe; your awareness can keep your family safe and thus, the entire country.</span></p>', '<p _msthash=\"1252810\" _msttexthash=\"10405783674\" style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\">২০১৯ সালের শেষ মাসটি থেকে নতুন একটি ভাইরাসের সাথে পরিচিত হলো গোটা বিশ্ব। যা এখনো দাপিয়ে বেড়াচ্ছে পুরো বিশ্বে। কভিড ১৯ নামের মারাত্মক এই ভাইরাসটির এখনো পর্যন্ত প্রতিষেধক না থাকলেও আছে প্রতিরোধের উপায়। সংক্রমণ এড়াতে তাই প্রয়োজন ঘরে থাকা এবং নিজে পরিচ্ছন্ন থাকা। একইসাথে প্রয়োজন <a href=\"https://www.bproperty.com/blog/bn/%E0%A6%95%E0%A6%B0%E0%A7%8B%E0%A6%A8%E0%A6%BE-%E0%A6%AD%E0%A6%BE%E0%A6%87%E0%A6%B0%E0%A6%BE%E0%A6%B8-%E0%A6%A5%E0%A7%87%E0%A6%95%E0%A7%87-%E0%A6%98%E0%A6%B0%E0%A7%87%E0%A6%B0-%E0%A6%B8%E0%A7%81%E0%A6%B0%E0%A6%95%E0%A7%8D%E0%A6%B7%E0%A6%BE/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">ঘরের সবকিছু জীবাণুমুক্ত রাখা</a>। আর সেকারনেই যে দুইটি জিনিসের চাহিদা এখন সবচেয়ে বেশি তা হল হ্যান্ড স্যানিটাইজার এবং জীবাণুনাশক। সাবান থেকে অনেকেই হ্যান্ড স্যানিটাইজার ব্যবহার করতে স্বাচ্ছন্দ্যবোধ করেন। কারন এটি ঘরে যেমন ঝটপট ব্যবহার করা যায়, তেমনি ঘরের বাইরেও স্যানিটাইজারের ছোট্ট বোতলটি পকেটে রেখে প্রয়োজনে ব্যবহার করা যায় বাজার, রাস্তাঘাট যেখানে প্রয়োজন। বিশেষত ঘরের বাইরে টাকা, বাজারের ব্যাগ, ওয়ালেট আমরা হরহামেশাই ব্যবহার করি। অনিচ্ছাসত্বেও হাতের স্পর্শ লাগতে পারে বাজারের পণ্যে, সিড়ির রেলিঙে বা বাইরের যে কোনো বস্তুতে। তাই বাইরে থাকা অবস্থায় যখন আপনার সাবান পানি দিয়ে হাত ধুয়ে নেবার সুযোগ কম, তখন বারবার হাত জীবাণুমুক্ত করে নিতে স্যানিটাইজার কিন্তু বেশ কার্যকরী সমাধান।</p><figure id=\"attachment_38003\" aria-describedby=\"caption-attachment-38003\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"wp-image-38003 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920.jpg\" alt=\"স্যানিটাইজার মাস্ক\" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/hand-disinfection-4954840_1920-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38003\" class=\"wp-caption-text\" _msthash=\"483964\" _msttexthash=\"12425335\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">সহজেই তৈরি করে নিতে পারবেন</figcaption></figure><p _msthash=\"1254058\" _msttexthash=\"12332956805\" style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\">অন্যদিকে ঘরের যেকোনো বস্তু জীবাণুমুক্ত করতে বর্তমানে অত্যাবশ্যকীয় হয়ে উঠেছে জীবানুনাশক। আমরা জানি যে, ভয়ংকর এই ভাইরাসটি বাতাসে তিন ঘণ্টা, তামার ওপর চার ঘণ্টা, কার্ডবোর্ডের ওপর ২৪ ঘণ্টা এবং প্লাস্টিক ও স্টেইনলেস স্টিলের ওপর দুই থেকে তিন দিন পর্যন্ত বেঁচে থাকতে পারে। তাই, বাইরে থেকে যে কোনো কিছু আনার পর সেগুলো জীবাণুমুক্ত করা খুব জরুরি। একই সাথে জরুরি, দরজার হ্যান্ডেল, ঘরের মেঝে ইত্যাদি নিয়মিত জীবাণুনাশক দিয়ে পরিষ্কার রাখা। কিন্তু, হ্যান্ড স্যানিটাইজার ও জীবাণুনাশক, বর্তমান পরিস্থিতিতে অত্যন্ত গুরুত্বপূর্ণ ও করোনা ভাইরাস প্রতিরোধক এ বস্তু দুটি কোথায় পাবেন আপনি? চাহিদা বেশি থাকায় নিত্য প্রয়োজনীয় এ জিনিস দুটি বাজারে আসার সাথে সাথেই শেষ হয়ে যাচ্ছে অধিকাংশ সময়। তাই বাজারে গিয়েও অনেকে পাচ্ছেন না হ্যান্ড স্যানিটাইজার ও জীবাণুনাশক। এ অবস্থায় আপনি কী করবেন? অধিক চাহিদার এ পণ্য দুটি কিনতে বারবার বাজারে ছুটবেন? চাহিদার সাথে বাড়তে থাকা দামে কিনে নেবেন চড়া মূল্যে? নাকি খুঁজবেন অন্য কোনো সহজ বিকল্প! এমন সহজ বিকল্প নিয়েই কথা বলবো আজ। এতো ছুটোছুটি না করে খুব সহজে ঘরেই বানিয়ে নেয়া সম্ভব হ্যান্ড স্যানিটাইজার আর জীবাণুনাশক। কীভাবে? চলুন জেনে নেই।</p><h2 _msthash=\"1281709\" _msttexthash=\"25809589\" style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px;\">যেভাবে তৈরি করবেন হ্যান্ড স্যানিটাইজার-</h2><p _msthash=\"1255306\" _msttexthash=\"6777250259\" style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\">বাজারে যে কোনো হার্ডওয়ারের দোকানে আইসোপ্রোপাইল অ্যালকোহল কিনতে পাওয়া যায়। কেনার সময় ৯০ শতাংশ আইসোপ্রোপাইল অ্যালকোহল বা রাবিং অ্যালকোহল রয়েছে এমন মিশ্রণ দেখে কিনুন। ঘরে বসে হ্যান্ড স্যানিটাইজার তৈরি করতে, প্রথমেই একটি বোতলে ৭৫০মিলি আইসোপ্রোপাইল অ্যালকোহল নিন। এতে ২ মিলি হাইড্রোজেন পার অক্সাইড যোগ করুন। মিশ্রণটিতে ১৫ মিলি গ্লিসারিন মিশিয়ে নিন। ২০০ মিলি ডিস্টিলড ওয়াটার অর্থাৎ ফুটিয়ে ঠান্ডা করা পানি মেশান। আলকোহলের গন্ধ যাতে না ছড়ায় এজন্য যোগ করুন ২৫/৩০ মিলি যেকোনো ধরণের সুগন্ধি বা অ্যাসেন্সিয়াল অয়েল। সব উপাদান ভালোভাবে মিশিয়ে নিয়ে একটা স্প্রে বোতলে ভরে ব্যবহার করুন। (উৎসঃ বিশ্ব স্বাস্থ্য সংস্থা) ঘরে কিংবা বাইরে সবসময় নিজের সাথে হ্যান্ড স্যানিটাইজার রাখুন। নিজেকে ও আশেপাশের সবাইকে নিরাপদ রাখতে একঘণ্টা পর পর বাড়িতে বানানো এ স্যানিটাইজারটি ব্যবহার করুন।</p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"><img class=\"aligncenter wp-image-38565 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862.jpg\" alt=\"জীবাণু নাশক \" width=\"1440\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862-300x188.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862-1024x640.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862-24x15.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/people-holding-clear-glass-bottle-3951862-36x23.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; display: block; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a></p><h2 _msthash=\"1283620\" _msttexthash=\"15339571\" style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">যেভাবে তৈরি করবেন জীবাণুনাশক-</h2><p _msthash=\"1257178\" _msttexthash=\"828487725\" style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">বাজারে বেশ সহজলভ্য একটি পণ্য হচ্ছে ব্লিচিং পাউডার। আজকাল যা, রাস্তার মোড়ে ভ্যানে করেও বিক্রয় করতে দেখা যায়। স্বাস্থ্য অধিদপ্তরের তথ্য অনুযায়ী, এই ব্লিচিং পাউডার দিয়েই জীবাণুনাশক প্রস্তুত সম্ভব। এটি দিয়ে দুই ধরণের জীবাণুনাশক তৈরী করা যাবে- বেশি ঘনত্বের ও কম ঘনত্ব।</p><h2 _msthash=\"1284894\" _msttexthash=\"27148667\" style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">বেশি ঘনত্বের জীবাণুনাশক তৈরির প্রক্রিয়া</h2><p _msthash=\"1283386\" _msttexthash=\"2054418119\" style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\">বেশি ঘনত্বের জীবাণুনাশকের অনুপাত হবে ১: ১০। এ জন্য একটি পাত্রে দুই লিটার পানির সঙ্গে এক টেবিল চামচ ব্লিচিং পাউডার যোগ করুন। এরপর পানির সঙ্গে মেশার জন্য আধঘণ্টা অপেক্ষা করুন। যে কোনো মুখবন্ধ বোতলে ভরে অপেক্ষাকৃত ঘন ও এ দ্রবণটি সংরক্ষণ করুন। তবে, এ দ্রবনটি কিন্তু নিত্য প্রয়োজনীয় ঘরের কাজের জন্য নয়। এটি সাধারণত অধিক সংক্রামক বর্জ্য, হাসপাতালের বর্জ্য ও করোনায় আক্রান্ত হয়ে মৃত ব্যক্তির দেহ জীবাণুমুক্ত করার জন্য ব্যবহৃত হয়।</p><h2 _msthash=\"1311648\" _msttexthash=\"24526580\" style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px;\">কম ঘনত্বের জীবাণুনাশক তৈরির প্রক্রিয়া</h2><p _msthash=\"1284660\" _msttexthash=\"2424571214\" style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\">স্বাস্থ্য সংস্থার তথ্য অনুযায়ী, কম ঘনত্বের জীবাণুনাশকের অনুপাত হবে ১: ১০০। এটি তৈরির জন্য, ২০ লিটার পানিতে এক টেবিল চামচ ব্লিচিং পাউডার গুলিয়ে নিন। এটি ঢাকনা দিয়ে ৩০ মিনিট ঢেকে রাখুন। নিচে জমা হওয়া তলানি ফেলে দিয়ে উপরের স্বচ্ছ জীবাণুনাশক স্প্রে বোতলে সংরক্ষণ করুন। এই জীবানুনাশকটিই মূলত ঘরের পরিচ্ছন্নতায় কাজে আসবে আপনার। ঘরের মেঝে, আসবাব, বিভিন্ন যন্ত্রাংশ, দরজার হ্যান্ডেল কিংবা গাড়ি জীবানুমুক্ত করতে অনায়াসে ব্যবহার করুন। (উৎসঃ স্বাস্থ্য অধিদপ্তর)</p><p _msthash=\"1285297\" _msttexthash=\"3387009093\" style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\">করোনা পরিস্থিতি মোকাবেলায় সতর্কতা ও সচেতনতাই আপনার সবচেয়ে বড় ঢাল। যে অত্যাবশ্যকীত জিনিসগুলো বাড়িতেই কম খরচে বানানো সম্ভব তার জন্য বাইরে ছুটোছুটি করবেন না। বরঞ্চ, হ্যান্ড স্যানিটাইজার ও জীবাণুনাশক ঘরেই বানানোর ফলে যে অতিরিক্ত অর্থ আপনার বেচে গেলো তা বরাদ্দ করুন নিম্ন আয়ের অসহায় মানুষের জন্য। রমজানের এই মাসে আপনার সামর্থ্য মতো সাহায্যের সাথে যোগ করুন এই বেচে যাওয়া অর্থটুকুও। <span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">সেইসাথে, আমাদেরকে জানান বাড়িতে বানানো হ্যান্ড স্যানিটাইজার আর জীবাণুনাশক কী কী কাজে ব্যবহার করছেন আপনি। আপনার সতর্কতাই সুরক্ষিত রাখতে পারে আপনার পরিবার ও দেশকে।</span></p><div class=\"sharify-container\" style=\"margin: 0px; padding: 20px 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; position: relative; width: 770px; overflow: hidden; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"></div>', '2020-05-04 21:14:49', '2020-05-04 21:14:49');
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(7, 6, 'INNOVATIVE DIY HOME OFFICE DESK DECOR IDEAS', 'হোম অফিস ডেস্ক ডেকোর -“ডি আই ওয়াই”- চমৎকার সব ডেকোর আইডিয়া!', 'public/media/post/1665878392597665.jpg', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">During these days, most of the people are <a href=\"https://www.bproperty.com/blog/home-office-productivity-tips/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">working from home</a>. As a result, it’s really important to decorate the desk of your workstation in order to uplift your mood and organize your work. A clean, well furnished, and elegantly decorated working space can bring better concentration and inspiration to work. The arrangement of proper lighting is also an important function of the decor. Here are some best DIY home office desk decor ideas you can easily select and apply to your place.</p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">KEEPING IT MINIMAL</h1><figure id=\"attachment_38538\" aria-describedby=\"caption-attachment-38538\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38538\" src=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" alt=\"table and a chair\" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16@2x.jpg 48w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200@2x.jpg 600w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180@2x.jpg 540w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24@2x.jpg 72w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-48x32@2x.jpg 96w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182@2x.jpg 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38538\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Keeping it minimal is the most gorgeous way</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><a href=\"https://www.bproperty.com/blog/minimalist-home-design/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">Keeping it minimal</a> and simplest is the most inexpensive idea, and you don’t need to explore a lot of options. Minimal desk decor ideas at your home can save up your space and you can easily fit in a corner. Use a small desk of your choice, along with a wall painting of a small-sized frame. Keep the frame on your table with some tiny showpieces. Two or three pieces are fine but don’t overdo by using much. Otherwise, it will hamper<a href=\"https://www.bproperty.com/blog/tips-achieve-minimal-lifestyle/\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> the minimalism</a> of your table and will occupy your workspace.</p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">MATCHING WITH A LIGHT ACCENT</h1><figure id=\"attachment_38539\" aria-describedby=\"caption-attachment-38539\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38539\" src=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" alt=\"table with a pc, mobile, plant\" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38539\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">Matching light accent with two bright colors can uplift your mood</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Your desk decor with matching colors and styles can be a great way to present it. The light hue and contrast of the matching color (preferably yellow or white) must set a mixing tone with some bright reflections of green or brown. This makes your work table look vibrant and lively.</p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">ALL ORGANIZED IN ONE</h1><figure id=\"attachment_38540\" aria-describedby=\"caption-attachment-38540\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38540\" src=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" alt=\"A wooden desk with many objects\" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38540\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">You can arrange all in one desk</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">If you like bursts of colors and want to integrate a good amount of things into your desk decor, but have a little space, you need to be very tactical. Firstly, choose spots on your desk. Then place things according to their shapes and the space they occupy. Set up some organizers and hang those on your wall, so that you can reach them easily. Holders, a small pot of plant, screen, the whiteboard can also be kept. Keep your laptop on the side of the table. To make it more interesting you can hang a bookshelf so that you can read something while you are having a small break. For diversification and to portray old times, your desk can be made of wood, infused with a rustic color. Keeping a lampshade with bright light will add the cherry on top.</p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">PLANT TO BREATH FRESH</h1><figure id=\"attachment_38541\" aria-describedby=\"caption-attachment-38541\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38541\" src=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" alt=\"Plant and pc\" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38541\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">A pot of green can make your day</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Greenery is always a thing of serenity, of beauty which is a joy forever. If your desk is not shaded and kept just beside the window, you can always have small pots of plants right beside you. Plants like cactus, aglaonema, peace lily, philodendron, dracaena, etc are the best options. They are easily available in several horticulture centers in Dhaka. But remember, your work desk must be placed at such an angle so that enough sunlight enters during the daytime. Plants are the best things for any kind of decors, and henceforth, works for desk decor as well.</p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\">NIGHT STYLE WITH MOOD LIGHT AND FAIRY LIGHTS</h1><figure id=\"attachment_38542\" aria-describedby=\"caption-attachment-38542\" class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1440px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38542\" src=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" alt=\"table with lights\" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38542\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">If you work in night shifts, make your table interesting with different lightings</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">Many people work at night and like to decorate their workstation with different arrangements of lights. If you love dimmed lights, you can come up with a beautiful desk decor. There are several LED lights with low powers, which you can fix at the bottom of your desk. Keep a counter beneath for storing valuable documents there. Put a low-power lampshade on the side. You can encircle your desk with fairy lights of multiple colors, to add to the beautification. All the different kinds of lights together finally will bring your utmost satisfaction.</p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\">These are some of the most unique and replenishing desk decor ideas for you. <a href=\"https://www.bproperty.com/blog/organizing-home-office-productivity/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">Start organizing your home office for maximum productivity.</a> Daily office works take a heavy toll on your mind and physique. <a href=\"https://www.bproperty.com/blog/tips-work-from-home-ramadan/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">Work from home will be quite relieving</a> if your workstation cheers you up every day. A boring workplace with no decor can make your mood bland and you may lose the incentive to work properly. And that is why<a href=\"https://www.bproperty.com/blog/?s=home+decor\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"> decorating your home</a> office desk is a must with any of these spectacular ideas in order to stay positive, bring out innovative ideas, and concentrate at work.</p>', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/bn/%E0%A6%95%E0%A6%B0%E0%A7%8B%E0%A6%A8%E0%A6%BE-%E0%A6%AD%E0%A6%BE%E0%A6%87%E0%A6%B0%E0%A6%BE%E0%A6%B8-%E0%A6%A5%E0%A7%87%E0%A6%95%E0%A7%87-%E0%A6%98%E0%A6%B0%E0%A7%87%E0%A6%B0-%E0%A6%B8%E0%A7%81%E0%A6%B0%E0%A6%95%E0%A7%8D%E0%A6%B7%E0%A6%BE/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">কোভিড-১৯</a> এর সময়ে আমরা সবাই বাসায় থেকে কাজ করছি! সবারই একটা অফিস স্পেস নিশ্চয়ই আছে? যেখানে আর কিছু থাকুক না থাকুন একটা “অফিস ডেস্ক” অবশ্যই আছে। আর আমি একজন হোম ডেকোর রাইটার হিসেবে সবকিছুতে নান্দনিকতা দেখতে কিংবা খুঁজে পেতে পছন্দ করি। তাই হোম অফিস হোক কিংবা অফিস সবকিছু পরিমার্জিতভাবে সাজিয়ে কাজ করলে নিজের কাছেই ভালো লাগে এবং কাজের </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">গতি</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> বাড়ে তাই, আজ চলুন জেনে নেই, হোম অফিস ডেস্ক ডেকোর -“ডি আই ওয়াই”- চমৎকার সব আইডিয়া সম্বন্ধে। </span></p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">মিনিমাল লুক </span></h1><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"><img class=\"alignnone wp-image-38538 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg\" alt=\"ডেস্ক \" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-24x16@2x.jpg 48w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-300x200@2x.jpg 600w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-270x180@2x.jpg 540w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-36x24@2x.jpg 72w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-48x32@2x.jpg 96w, https://www.bproperty.com/blog/wp-content/uploads/beige-and-black-chair-in-front-of-white-desk-509922-2-272x182@2x.jpg 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 40px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a><a href=\"https://www.bproperty.com/blog/bn/%E0%A6%8F%E0%A6%87-%E0%A7%AB%E0%A6%9F%E0%A6%BF-%E0%A6%AC%E0%A6%BF%E0%A6%B7%E0%A7%9F-%E0%A6%9C%E0%A7%87%E0%A6%A8%E0%A7%87-%E0%A6%AC%E0%A6%BE%E0%A6%B8%E0%A6%BE-%E0%A6%A1%E0%A6%BF%E0%A6%9C%E0%A6%BE%E0%A6%87%E0%A6%A8-%E0%A6%95%E0%A6%B0%E0%A7%81%E0%A6%A8/\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">হোম ডিজাইন করতে গেলে মিনিমাল লুকের সুবিধা</a> হচ্ছে আপনি খুব কম খরচে যেকোন কিছুই ফুটিয়ে তুলতে পারবেন। মিনিমাল লুক ডেস্ক ডেকোর আপনার ঘরের জায়গা অনেকটা কমিয়ে আনবে এবং আপনি কম জায়গায় খুব সুন্দর করে সবকিছু গুছিয়ে রাখতে পারবেন। ছোট খাটো একটা টেবিল প্রথমেই বেছে নিন এবং টেবিলের সৌন্দর্য বাড়াতে রাখতে পারেন ছোট একটা ফ্রেম। ফ্রেমের আসে পাশে রেখে দিতে পারেন ছোট ছোট বেশ কয়েকটি শোপিস। তবে খেয়াল রাখবেন বেশি কিছু রাখবেন না এতে করে মিনিমাল লুক আর থাকবে না। </span></p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">লাইট অ্যাকসেন্ট</span></h1><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"><img class=\"alignnone wp-image-38539 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg\" alt=\"পিসি কিবোর্ড \" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/apple-devices-books-business-coffee-572056-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 40px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>ডেস্ক ডেকোর রঙের সাথে মিলিয়ে করলে আরও বেশি সুন্দর দেখাবে! লাইট কনট্রাস্টের সাথে ডীপ কনট্রাস্ট মিলিয়ে নিয়ে বেশ সুন্দর করেই সাজানো সম্ভব। হলুদের সাথে সাদা মিলিয়ে চমৎকার একটা কনট্রাস্ট তৈরি হয় যেখানে হালকা ও </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">গাঢ় </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">দুটো রঙই এক সাথে থাকে। <a href=\"https://www.bproperty.com/blog/bn/%E0%A6%95%E0%A7%8B%E0%A6%A5%E0%A6%BE%E0%A7%9F-%E0%A6%AA%E0%A6%BE%E0%A6%AC%E0%A7%8B-%E0%A6%A8%E0%A6%BE%E0%A6%A8%E0%A6%BE%E0%A6%B0%E0%A6%95%E0%A6%AE-%E0%A6%AC%E0%A6%BE%E0%A6%B9%E0%A6%BE%E0%A6%B0/\" target=\"_blank\" rel=\"noopener noreferrer\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\">বাহারি বাতি</a> ব্যবহার করলে আপনার হোম অফিস ডেস্ক দেখতে বেশ সুন্দর দেখাবে! </span></p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">সব একসাথে অর্গানাইজ রাখতে হবে</span></h1><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"><img class=\"alignnone wp-image-38540 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg\" alt=\"কাঠের টেবিল এবং পিসি \" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/elsa-noblet-5KD5PmZEfcg-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 40px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>আপনি যদি অনেক রঙ এক সাথে পছন্দ করেন তাহলে, আপনাকে একটু সাবধানে এই রঙগুলো ব্যবহার করতে হবে। মনে রাখতে হবে আপনার হোম অফিস ডেস্কটা এতটাও বড় না যে সব রঙ এক সাথে ব্যবহার করা যাবে না। প্রথমে আপনাকে বেছে নিতে হবে কোথায় কোথায় রঙ ব্যবহার করবেন, এরপর সেখানে রঙ করুন। আপনি চাইলে ডেস্ক অর্গানাইজার ব্যবহার করতে পারেন। এতে করে ডেস্ক ডেকোর আরও সুন্দর হবে। পেন হোল্ডার বা কলমদানি রাখুন। ডেস্কের পাশা বুক সেলফ রাখুন যাতে করে আপনি সময় পেলে বই পড়তে পারেন। খুব সম্ভবত আপনার ডেস্কটি কাঠের যদি তাই হয়ে থাকে তাহলে আপনি এই কাঠের আসবাবে রাস্টিক লুক আনতে আপনি ল্যান্ড শেড ব্যবহার করতে পারেন। এটা সহজেই ডেস্ক ডেকোর বদলে ফেলবে। </span></p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">এক টুকরো গাছ রাখুন </span></h1><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"><img class=\"alignnone wp-image-38541 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg\" alt=\"গাছ এবং পিসি \" width=\"1440\" height=\"960\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-1024x683.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/photo-of-laptop-near-plant-1006293-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 40px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>ডেস্কের উপর একটা ছোট</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> টবে </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">পছন্দের যেকোন গাছ রাখুন। চেষ্টা করবেন আপনার টেবিলটা জানালার কাছে রাখতে, এতে করে আপনার ছোট্ট গাছে আলো ছায়া পর্যাপ্ত পরিমাণে আসবে। ক্যাকটাস, অ্যাগলেওনমা, পিস লিলি, ফিলোডেনড্রন, ড্র্যাকেনা ইত্যাদি গাছগুলো বেশ ভালো। আশাপাশের যেকোন নার্সারিতে আপনি সহজেই এই গাছগুলো খুঁজে পাবেন। মনে রাখতে হবে, আপনার ডেস্কটি ঘরের এমন কোণায় রাখবেন যেখানে আলো বাতাসের প্রবেশ থাকে পুরোদমে।</span></p><h1 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 25px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">আলোর ব্যবস্থা </span></h1><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"><img class=\"alignnone wp-image-38542 size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg\" alt=\"টেবিল এবং গাছ \" width=\"1440\" height=\"959\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash.jpg 1440w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-300x200.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-1024x682.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-270x180.jpg 270w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-24x16.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-36x24.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/med-badr-chemmaoui-deoSlTaI0JU-unsplash-272x182.jpg 272w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 540w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 544w\" sizes=\"(max-width: 1440px) 100vw, 1440px\" style=\"margin: 40px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a>অনেকে আছি আমরা রাতের বেলায় কাজ করি তাদের জন্য অফিস ডেস্ক ডেকোর হওয়া উচিত সময় উপযোগী। আপনি যদি মৃদু আলো পছন্দ করে থাকেন তাহলে, আপনি এই মৃদু আলো ব্যবহার করেই অফিস ডেস্ক সাজাতে পারেন। এমন অনেক “এলইডি লাইট” আছে যা আপনি অফিস ডেস্কের উপরে লাগাতে পারেন, কাজেও সাহায্য হবে এবং দেখতেও সুন্দর দেখাবে! অফিস ডেস্ক সাজাতে আপনি “এঞ্জেল লাইট” ব্যবহার করতে পারেন। এটাও বেশ মানাবে! </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">এগুলো ছিল চমৎকার সব অফিস ডেস্ক ডেকোর আইডিয়া। কেমন </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">হয়</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> বা কেমন কাজের জানাতে ভুলবেন না! </span></p>', '2020-05-04 21:16:44', '2020-05-04 21:16:44');
INSERT INTO `posts` (`id`, `category_id`, `post_title_en`, `post_title_bn`, `post_image`, `details_en`, `details_bn`, `created_at`, `updated_at`) VALUES
(8, 5, 'MAY DAY – A BRIEF HISTORY', 'মে দিবসের কথকতা', 'public/media/post/1665796246688114.jpg', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Today is May Day. Millions of working people fought for their demands and rights. The day is well-known for its significance. But how did the day come into being? And why is it celebrated as the day of liberation for working people? Let’s find out.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">HOW IT ALL STARTED</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1270px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar.jpg\" alt=\"May Day poster\" width=\"1270\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">8 hours for work, 8 hours for rest and 8 hours for what we will</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">There are stories of exploitation and oppression of the strong over the weak throughout history. The exploiting classes behave ruthlessly for their own interests. This was the story of the early nineteenth century. At that time, workers used to work an average of 12 hours a day and received only nominal wages while bosses used to snatch all the profits. On the contrary, the workers’ living conditions were inhumane. Along with unjust abuse, workers would suffer from constant unspeakable torture. </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">In 1860, workers became vocal about their rights and demanded eight-hour working days without a reduction in wages. An organization named the American Federation of Labor was later formed. This organization continued its movement relentlessly in order to assert the due wages and rights of the workers and their slogan was- </span></p><blockquote style=\"margin-top: 2em; margin-bottom: 2em; padding: 0px 0px 0px 45px; border: 0px; vertical-align: baseline; font-size: 18px; font-family: "Open Sans", Arial, sans-serif; quotes: none; color: rgb(130, 130, 130); font-style: italic; line-height: 1.75; -webkit-font-smoothing: antialiased; -webkit-text-stroke-color: initial;\"><p style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Eight hours for work, eight hours for rest, eight hours for what we will.</span></p></blockquote><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">EVENTS BEFORE A TRAGEDY </span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Looking at history, neither any demand nor any claim in this world was achieved in a day, and just like that 24 years had passed without any result. But in 1884, a group of workers in Chicago again started a movement with those same demands. They set the deadline till May 1st, 1884 for the implementation of their demands and took the movement to new heights. Even after such a demonstration, the bosses remained silent. Over time, as resentment started to grow among the workers, the revolt became extreme. As a result, Chicago turned into the main stage for protesting.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">As 1st May approached, the clash between the two parties seemed inevitable. Every demand that was made in favor of the workers was rejected by the owners of the factories and the bosses of the offices. The police, as always, took side with the authority and brutally started charging the protestors. That day on May 1st, about 300,000 U.S. workers came onto the street. The movement was about to reach its climax. </span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">HAYMARKET TRAGEDY</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Inspired by the labor march in Canada in 1872, workers in Chicago called for a gathering on May 4th, 1886. On the evening of that day, despite having hundreds of setbacks, workers gathered for a procession in the commercial zone called Haymarket square.</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">At one point in the movement when a leader named August Spies was giving his speech to the assembled workers, a bomb was thrown into the crowd, killing a sergeant. That in turn, resulted in a battle and seven policemen were announced dead later in that incident. Then the police started causing havoc upon the assembled workes by launching random attacks. This quickly turned into a riot and in total 11 workers were martyred.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">FALSE ACCUSATION AND MAXIMUM PENALTY</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">As a punishment, the police accused the workers of murder and ridiculously filed a case against eight workers including August Spies. Among them, Oscar Nibe was sentenced to 15 years of imprisonment and a man named ‘Lewis Ling’ committed suicide while in prison. The other six were hanged in public on 11th November 1887. Before he was hanged to death August Spies said-</span></p><blockquote style=\"margin-top: 2em; margin-bottom: 2em; padding: 0px 0px 0px 45px; border: 0px; vertical-align: baseline; font-size: 18px; font-family: "Open Sans", Arial, sans-serif; quotes: none; color: rgb(130, 130, 130); font-style: italic; line-height: 1.75; -webkit-font-smoothing: antialiased; -webkit-text-stroke-color: initial;\"><p style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The day will come when our silence will be more powerful than the voices you are throttling today</span></p></blockquote><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The most painful thing of all is that these lies were finally caught and on 26th June 1893, John Peter Altgeld, the governor of Illinois finally stated that the trial was felonious and based upon a complete lie. Later the corrupted commander of the police was accused and charged for the heinous act. Eventually, the demand for an “8-hour day” was officially recognized and since then, the 1st of May has been celebrated as a day of sacrifice and the reimbursement of workers’ demand.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">REMEMBRANCE</span></h2><figure class=\"wp-caption aligncenter\" style=\"margin: 40px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1200px;\"><img class=\"size-full\" src=\"https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument.jpg\" alt=\"Haymarket martyrs monument\" width=\"1200\" height=\"900\" style=\"margin: 0px auto; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"><figcaption class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">A monument was built to commemorate the martyrs</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Among the six workers who were martyred by hanging to death, five of them were buried in the German Waldheim Cemetery in Forest Park, Chicago (now the Forest Home Cemetery). A monument designed by sculptor Albert Weinert was built to commemorate the false trial. Exactly 100 years later, the US Ministry of Home Affairs declared the monument as a national historic landmark. </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The last quote from August Spies can be seen at the footer of the 16-foot tall granite monument. And the rear part of the structure features a plaque by the governor John Peter Altgeld which symbolizes his justice.</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">THE WORLDWIDE CELEBRATION OF MAY DAY</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">The International Labor Conference was held on 14th February 1889 in France. 1st May was declared as Labor day and May Day was formally recognized as an annual event. There are more than 8o countries including Bangladesh where May Day is celebrated as a public holiday and in some countries, the day is celebrated privately. </span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">One interesting fact is, for reasons unbeknownst to many, May Day is not celebrated in May in the US where the main incident occurred. Instead, the day is celebrated on the first Monday of every September each year. The same goes for Canada as well. </span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">ANOTHER CELEBRATION OF MAY DAY</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">Almost everyone knows that May Day is the celebration of the realization of workers’ rights. But there is another less popular celebration on the same day. 1st May is celebrated as the festival of seasonal change in the northern hemisphere. Several European countries take a lot of initiatives to celebrate the day as the start of warmer weather. Although it is relatively not so common worldwide, its history goes back to many years.</span></p>', '<p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">আজ মহান মে দিবস। কোটি শ্রমজীবি মানুষের দাবি ও অধিকার আদায়ের দিন হিসেবে সুপরিচিত এই দিনটি। কিন্তু কিভাবে এই এই মে দিবস? কেনই বা একে পালন করা হয় শ্রমজীবি মানুষের মুক্তির দিন হিসেবে? চলুন জেনে নেয়া যাক।</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">যেভাবে শুরু</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">মানবসভ্যতার ইতিহাসের এক বড় অংশ জুড়ে আছে দুর্বলের উপর সবলের শোষণ আর অত্যাচারের কাহিনী। বিভিন্ন সময়ে, বিভিন্নরূপে শোষকশ্রেনী তাঁদের স্বার্থ হাসিলের জন্য নির্দয় আচরণ করেছে। আমরা যে সময়ের কথা বলছি সেটি ঊনবিংশ শতাব্দীর শুরুর দিকে। সেসময় দিনে কাজ করতেন গড়ে ১২ ঘণ্টা, অথচ মুজুরি পেতেন নামেমাত্র। লাভের গুড় সবটাই যেত মালিকে পেটে। উল্টোদিকে শ্রমিকদের জীবনযাপন ছিল মানবেতর। শ্রমিকদের উপর অনায্য অপব্যবহারের সাথে সাথে ছিল মালিকপক্ষের অনবরত অকথ্য নির্যাতন</span></p><figure id=\"attachment_38492\" aria-describedby=\"caption-attachment-38492\" class=\"wp-caption alignnone\" style=\"margin-top: 40px; margin-bottom: 40px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; max-width: 100%; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; width: 1270px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s; display: block;\"><img class=\"size-full wp-image-38492\" src=\"https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar.jpg\" alt=\"আট ঘন্টা কাজের দাবী সম্বলিত পোস্টার\" width=\"1270\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar.jpg 1270w, https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar-300x213.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar-1024x726.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar-24x17.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/workers_050517_dailystar-36x26.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1270px) 100vw, 1270px\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s;\"></a><figcaption id=\"caption-attachment-38492\" class=\"wp-caption-text\" style=\"margin: 5px 0px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-size: calc(0.28571em + 9.28571px); font-family: inherit; font-style: italic; text-align: center; color: rgb(180, 180, 180); -webkit-text-stroke: 0px;\">আট ঘন্টা কাজের দাবী সম্বলিত পোস্টার</figcaption></figure><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">১৮৬০ সালে শ্রমিকরা মানুষ হিসেবে তাঁদের দাবি আদায়ে সোচ্চার হন। তাঁদের দাবি ছিল মজুরি না কমিয়ে সারা দিনে কাজ আট ঘণ্টায় নামিয়ে আনা। এজন্য আমেরিকান ফেডারেশন অব লেবার নামে একটি সংগঠনও তৈরি হয় পরবর্তীকালে। এই সংগঠন শ্রমিকদের প্রাপ্য মজুরি ও অধিকার আদায়ের লক্ষ্যে অবিরত আন্দোলন চালিয়ে যেতে থাকে। তাদের স্লোগান ছিল-</span></p><blockquote style=\"margin-top: 2em; margin-bottom: 2em; padding: 0px 0px 0px 45px; border: 0px; vertical-align: baseline; font-size: 18px; font-family: "Open Sans", Arial, sans-serif; quotes: none; color: rgb(130, 130, 130); font-style: italic; line-height: 1.75; -webkit-font-smoothing: antialiased; -webkit-text-stroke-color: initial;\"><p style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">“দিনে চাই আট ঘন্টা কাজ, আট ঘন্টা বিশ্রাম, আর বাকি সময় নিজের ইচ্ছায় চলার অধিকার”</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><br></span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">(Eight hours for work, eight hours for rest, eight hours for what we will)</span></p></blockquote><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">একটি ট্রাজেডির পূর্ব ঘটনাবলী</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">পৃথিবীর কোন দাবিই একদিনে আদায় হয় না, তাই এভাবে কেটে গেল ২৪টি বছর। ১৮৮৪ সালে যুক্তরাষ্ট্রের শিকাগো শহরের একদল শ্রমিক একই দাবীতে আন্দোলন শুরু করেন। তারা এ দাবী কার্যকর করার জন্য ১৮৮৬ সালের পহেলা মে পর্যন্ত সময় বেঁধে দিয়ে আন্দোলনকে নতুন এক পর্যায়ে নিয়ে যান। পরবর্তীতে বারবার মালিকপক্ষের কাছে দাবি জানানো হলেও মালিকপক্ষ তাতে টূ শব্দ করেন না, দাবী মেনে নেয়া তো দূরে থাক। শ্রমিকদের মনে ক্ষোভ দানা বেঁধে উঠতে শুরু করে, বিদ্রোহ ওঠে চরমে। আর শিকাগো শহর হয়ে ওঠে প্রতিবাদ-বিদ্রোহের মূল মঞ্চ।<br></span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">পহেলা মে যতই এগিয়ে আসছিল, দুই পক্ষের মধ্যে সংঘর্ষ যেন হয়ে উঠছিল অবধারিত। মালিক শ্রেণি ঐ প্রস্তাব প্রত্যাখ্যান করছিল । পুলিশ বরাবরের মতই সবলের পক্ষ নিয়ে শ্রমিকদের উপর নির্মম নির্যাতন চালিয়ে যাচ্ছিল। সেবার যুক্তরাষ্ট্রের প্রায় তিন লাখ শ্রমিক পহেলা মে কাজ ফেলে নেমে আসেন রাস্তায়। আন্দোলন চরমে ওঠে।</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">হে-মার্কেট ট্রাজেডি</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">৪ মে, ১৮৮৬ , সন্ধ্যা সাড়ে সাতটা। শত বাঁধা বিপত্তির মধ্যে শিকাগোর হে-মার্কেট স্কয়ার নামক এক বাণিজ্যিক এলাকায় শ্রমিকগণ মিছিলের উদ্দেশ্যে জড়ো হন। এর আগে ১৮৭২ সালে কানাডায় অনুষ্ঠিত এক বিশাল শ্রমিক শোভাযাত্রা হয়েছিল। এরই সাফল্যে উদ্বুদ্ধ হয়ে আমেরিকার শিকাগো শহরের শ্রমিকেরা এটি করেছিলেন।<br></span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">এ আন্দোলনের এক পর্যায়ে </span><i style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">অগাস্ট স্পীজ</i><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"> নামে এক নেতা জড়ো হওয়া শ্রমিকদের উদ্দেশ্যে বক্তৃতা দিচ্ছিলেন। হঠাৎ পাশে দাঁড়ানো পুলিশ দলের নিকট একটি বোমার বিস্ফোরণ ঘটে। ফলশ্রুতিতে একজন পুলিশের তৎক্ষণাৎ এবং পরবর্তীতে আরও ছয়জনের মৃত্যু হয়। এর পরপর পুলিশ শ্রমিকদের উপর অতর্কিতে হামলা শুরু করে। দুইপক্ষেই অসংখ্য মানুষের উপস্থিতি থাকাই দ্রুতই এটি রায়ট বা দাঙ্গায় পরিণত হয়। এতে ১১ জন শ্রমিক শহীদ হন।</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">মিথ্যা অভিযোগ গঠন এবং সর্বোচ্চ শাস্তি </span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">এই রায়টের শাস্তিস্বরূপ পুলিশের পক্ষ থেকে শ্রমিকদের হত্যা মামলায় অভিযুক্ত করা হয় এবং অগাস্ট স্পীজ-সহ মোট আটজনকে প্রহসনমূলকভাবে দোষী সাব্যস্ত করা হয়। তাদের মধ্যে ‘অস্কার নীবে’-কে ১৫ বছরের কারাদণ্ড দেয়া হয়। ফাঁসি দেয়ার আগেই কারারুদ্ধ অবস্থায় ‘লুইস লিং’ নামের একজন আত্মহত্যা করেন। বাকি ছয়জনকে ১৮৮৭ সালের ১১ই নভেম্বর তারিখে উন্মুক্ত স্থানে ফাঁসি দেয়া হয়।</span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">ফাঁসিতে ঝুলার আগ মুহূর্তে অগাস্ট স্পীজ বলেছিলেন, </span></p><blockquote style=\"margin-top: 2em; margin-bottom: 2em; padding: 0px 0px 0px 45px; border: 0px; vertical-align: baseline; font-size: 18px; font-family: "Open Sans", Arial, sans-serif; quotes: none; color: rgb(130, 130, 130); font-style: italic; line-height: 1.75; -webkit-font-smoothing: antialiased; -webkit-text-stroke-color: initial;\"><p style=\"margin-right: 0px; margin-bottom: 0px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">“আজ তোমরা যে কণ্ঠগুলোকে চিরতরে স্তব্ধ করে দিচ্ছো, এমন একদিন আসবে যেদিন আমাদের নিরবতাই এর চাইতে শক্তিশালী হয়ে দাঁড়াবে!” (The day will come when our silence will be more powerful than the voices you are throttling today.)</span></p></blockquote><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">সবচেয়ে কষ্টের বিষয় হল, এ বিচার এবং শাস্তি, উভয়ই যে মিথ্যা ছিল তা শেষ পর্যন্ত ধরা পড়ে। ২৬ জুন ১৮৯৩ ইলিনয়ের গভর্নর জন পিটার অল্টগেল্ড-এর পক্ষ থেকে জানানো হয়, মিথ্যে আর অপরাধমূলক ছিল ওই বিচার। পুলিশের কমান্ডারকে দুর্নীতির দায়ে অভিযুক্ত করা হয়।<br></span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">শেষ পর্যন্ত শ্রমিকদের দৈনিক আট ঘণ্টা কাজের দাবী আনুষ্ঠানিকভাবে স্বীকৃতি পায়। সেই থেকে পহেলা মে পালিত হয় শ্রমিকদের আত্মদান আর দাবি আদায়ের দিন হিসেবে।</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">স্মৃতিস্তম্ভে অগ্রগামীদের স্মরণ</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px;\"><a href=\"https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument.jpg\" style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; opacity: initial; color: rgb(5, 146, 233); transition-duration: 0.25s;\"><img class=\"alignnone size-full wp-image-38493\" src=\"https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument.jpg\" alt=\"স্মৃতিফলক\" width=\"1200\" height=\"900\" srcset=\"https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument.jpg 1200w, https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument-300x225.jpg 300w, https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument-1024x768.jpg 1024w, https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument-24x18.jpg 24w, https://www.bproperty.com/blog/wp-content/uploads/Riot_Monument-36x27.jpg 36w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 48w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 600w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 72w, https://www.bproperty.com/blog/wp-content/uploads/[email protected] 96w\" sizes=\"(max-width: 1200px) 100vw, 1200px\" style=\"margin: 40px 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; max-width: 100%; height: auto; will-change: opacity; transition: opacity 0.3s ease-in 0s; display: block;\"></a></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">ফাঁসিপ্রাপ্ত পাঁচজন শহীদ শ্রমিক সমাহিত হন শিকাগোর ফরেস্ট পার্কে জার্মান ওয়াল্ডহেইম কবরস্থানে (বর্তমানে যা ‘ফরেস্ট হোম কবরস্থান’)। ১৮৯৩তে মিথ্যা বিচার প্রমাণিত হলে তাঁদের স্মরণে একটি স্মৃতিস্তম্ভ নির্মিত হয় ভাস্কর আলবার্ট ওয়েইনার্টের নকশায়। এর ঠিক একশ’ বছর পর এসে সেই স্মৃতিস্তম্ভটিকে যুক্তরাষ্ট্রের স্বরাষ্ট্র মন্ত্রণালয় ন্যাশনাল হিস্টোরিক ল্যান্ডমার্ক হিসেবে ঘোষণা করে। </span><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">গ্রানাইটের তৈরি ১৬ ফুট উঁচু এই স্মৃতিস্তম্ভের পাদদেশে লেখা রয়েছে অগাস্ট স্পীজের সেই সর্বশেষ উক্তিটি-</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px 0px 0px 40px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">“THE DAY WILL COME WHEN OUR SILENCE WILL BE MORE POWERFUL THAN THE VOICES YOU ARE THROTTLING TODAY”</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">স্তম্ভটির পিছনের দৃশ্যে রয়েছে গভর্নর অল্টগেল্ডের একটি ব্রোঞ্জের ফলক যা তার ন্যায়বিচারের প্রতীক।</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">বিশ্বব্যাপী মে দিবস পালন</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">১৮৮৯ সালের ১৪ই জুলাই ফ্রান্সে অনুষ্ঠিত হয় আন্তর্জাতিক শ্রমিক সম্মেলন। এ সম্মেলনে পয়লা মে শ্রমিক দিবস হিসেবে ঘোষণা করা হয় সম্ররবসম্মতিক্রমে। পরবর্তী বছর থেকে ১ মে বিশ্বব্যাপী পালন হয়ে আসছে ‘মে দিবস’ বা ‘আন্তর্জাতিক শ্রমিক দিবস’ হিসাবে। বাংলাদেশ-সহ বিশ্বের প্রায় আশি-টিরও বেশি দেশে মে দিবস সরকারি ছুটির দিন। এছাড়া বেশ কিছু দেশে বেসরকারিভাবে পালিত হয়।</span></p><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">মজার ব্যাপার হলো যে দেশে এর জন্ম সেই যুক্তরাষ্ট্রেই মে দিবস পালিত হয় না। একই কথা কানাডার ক্ষেত্রেও। অজানা কারণে মে দিবসের বদলে এই দুটি দেশ সেপ্টেম্বর মাসের প্রথম সোমবার শ্রমিক দিবস পালন করে থাকে।</span></p><h2 style=\"margin: 1.2em 0px 1em; padding: 0px; border: 0px; vertical-align: baseline; font-size: 16px; font-family: "Open Sans", Arial, sans-serif; font-weight: 600; color: rgb(22, 22, 22); text-transform: uppercase; line-height: 1.5; -webkit-font-smoothing: initial; -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit; font-weight: 400;\">মে দিবসের অন্য একটি উদযাপন</span></h2><p style=\"margin-right: 0px; margin-bottom: 26px; margin-left: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: "Open Sans", Arial, sans-serif; color: rgb(96, 96, 96); -webkit-text-stroke-width: 0.2px; text-align: justify;\"><span style=\"margin: 0px; padding: 0px; border: 0px; vertical-align: baseline; font-family: inherit;\">মে দিবস যে শ্রমিকদের অধিকার আদায়ের উদযাপন তা প্রায় সকলেরই জানা। কিন্তু এই দিনের আরেকটি কম পরিচিত উদযাপনও কিন্তু রয়েছে। উত্তর গোলার্ধে এটিকে মৌসুম পরিবর্তনের একটি উৎসব হিসেবে উদযাপন করা হয় পহেলা মে-কে। ইউরোপের কয়েকটি দেশ উষ্ণ আবহাওয়ার শুরুর সময় হিসেবে মে দিবসে কর্মসূচি গ্রহণ করে। এটি বিশ্বব্যাপী তুলনামূলক কম প্রচলিত হলেও ের ইতিহাস অনেক পুরনো। </span></p>', '2020-05-04 21:18:17', '2020-05-04 21:18:17');
-- --------------------------------------------------------
--
-- Table structure for table `post_category`
--
CREATE TABLE `post_category` (
`id` bigint(20) UNSIGNED NOT NULL,
`category_name_en` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`category_name_bn` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `post_category`
--
INSERT INTO `post_category` (`id`, `category_name_en`, `category_name_bn`, `created_at`, `updated_at`) VALUES
(1, 'Service', 'সার্ভিস', '2020-05-03 15:44:58', '2020-05-03 15:44:58'),
(2, 'Event', 'ইভেন্ট', '2020-05-03 15:45:13', '2020-05-03 15:45:13'),
(3, 'Corona', 'করোনা', '2020-05-03 15:46:12', '2020-05-03 15:46:12'),
(4, 'Discount Offer !!', 'মূল্য ছাড় !!', '2020-05-03 15:46:55', '2020-05-03 15:46:55'),
(5, 'Social Awareness', 'সামাজিক সচেতনতা', '2020-05-03 15:48:02', '2020-05-03 15:48:02'),
(6, 'Tips', 'পরামর্শ', '2020-05-03 15:51:13', '2020-05-03 15:51:13');
-- --------------------------------------------------------
--
-- Table structure for table `sitesetting`
--
CREATE TABLE `sitesetting` (
`id` bigint(20) UNSIGNED NOT NULL,
`phone_one` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`phone_two` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_one` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_two` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`company_name` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address_one` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`address_two` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`logo` varchar(240) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`facebook` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`linkedin` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`twitter` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`youtube` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`instagram` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`pinterest` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`whatsapp` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`experience` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`project` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`award` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`clients` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `sitesetting`
--
INSERT INTO `sitesetting` (`id`, `phone_one`, `phone_two`, `email_one`, `email_two`, `company_name`, `address_one`, `address_two`, `logo`, `facebook`, `linkedin`, `twitter`, `youtube`, `instagram`, `pinterest`, `whatsapp`, `experience`, `project`, `award`, `clients`, `created_at`, `updated_at`) VALUES
(1, '+(60) 999-98 00 99', '+(60) 999-98 00 98', '[email protected]', '[email protected]', 'BariWala', '5th Floor, Finlay Square, 2 no gate', '3rd Floor, Jamuna Future Park', NULL, 'www.facebook.com/bariwala', 'www.linkedin.com/bariwala', 'www.twitter.com/bariwala', 'www.youtube.com/bariwala', 'www.instagram.com/bariwala', 'www.pinterest.com/bariwala', 'www.whatsapp.com/bariwala', '26', '300', '37', '276', '2020-05-06 08:42:38', '2020-05-06 08:42:38');
-- --------------------------------------------------------
--
-- Table structure for table `subcities`
--
CREATE TABLE `subcities` (
`id` bigint(20) UNSIGNED NOT NULL,
`city_id` int(11) NOT NULL,
`subcity_name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `subcities`
--
INSERT INTO `subcities` (`id`, `city_id`, `subcity_name`, `created_at`, `updated_at`) VALUES
(1, 1, 'Raozan', NULL, NULL),
(2, 1, 'Muradpur', NULL, NULL),
(4, 2, 'Dhanmondi', NULL, NULL),
(7, 1, 'Agrabad', NULL, NULL),
(8, 2, 'Shabag', NULL, NULL),
(10, 1, 'A K Khan', '2020-04-29 19:16:49', '2020-04-29 19:16:49'),
(12, 2, 'Mirpur', '2020-04-30 10:22:48', '2020-04-30 10:22:48'),
(13, 4, 'Bagherhat', '2020-04-30 19:03:43', '2020-04-30 19:03:43'),
(14, 3, 'Durgapur', '2020-04-30 19:56:55', '2020-04-30 19:56:55'),
(15, 3, 'Charghat', '2020-04-30 19:57:04', '2020-04-30 19:57:04'),
(16, 3, 'Bagmara', '2020-04-30 19:57:13', '2020-04-30 19:57:13'),
(17, 8, 'Rangpur Sadar', '2020-04-30 19:57:26', '2020-04-30 19:57:26'),
(18, 8, 'Kaunia', '2020-04-30 19:57:36', '2020-04-30 19:57:36'),
(19, 8, 'Gangachhara', '2020-04-30 19:57:45', '2020-04-30 19:57:45'),
(20, 5, 'Banaripara', '2020-04-30 19:58:01', '2020-04-30 19:58:01'),
(21, 5, 'Bakerganj', '2020-04-30 19:58:09', '2020-04-30 19:58:09'),
(22, 5, 'Babuganj', '2020-04-30 19:58:18', '2020-04-30 19:58:18'),
(23, 10, 'Muktagachha', '2020-04-30 20:01:07', '2020-04-30 20:01:07'),
(28, 2, 'Nawabganj', '2020-04-30 20:01:59', '2020-04-30 20:01:59'),
(29, 2, 'Tejgaon', '2020-04-30 20:02:07', '2020-04-30 20:02:07'),
(30, 4, 'Phultala', '2020-04-30 20:02:22', '2020-04-30 20:02:22'),
(31, 4, 'Rupsha', '2020-04-30 20:02:29', '2020-04-30 20:02:29'),
(32, 4, 'Terokhada', '2020-04-30 20:02:37', '2020-04-30 20:02:37'),
(33, 6, 'Osmani Nagar', '2020-04-30 20:02:54', '2020-04-30 20:02:54'),
(34, 6, 'Sylhet Sadar', '2020-04-30 20:03:07', '2020-04-30 20:03:07'),
(35, 6, 'Kanaighat', '2020-04-30 20:03:21', '2020-04-30 20:03:21'),
(36, 7, 'Nangalkot', '2020-04-30 20:07:08', '2020-04-30 20:07:08'),
(37, 7, 'Lalmai', '2020-04-30 20:07:17', '2020-04-30 20:07:17'),
(38, 7, 'Laksam', '2020-04-30 20:07:25', '2020-04-30 20:07:25'),
(39, 7, 'Chauddagram', '2020-04-30 20:07:36', '2020-04-30 20:07:36'),
(42, 2, 'Savar', '2020-05-10 10:52:12', '2020-05-10 10:52:12'),
(43, 1, 'GEC', '2020-05-10 10:55:49', '2020-05-10 10:55:49'),
(44, 2, 'Noya Polton', '2020-05-10 16:08:06', '2020-05-10 16:08:06'),
(45, 1, 'Noakhali', '2020-05-10 16:20:29', '2020-05-10 16:20:29'),
(46, 10, 'Bhaluka', '2020-07-05 20:00:15', '2020-07-05 20:00:15'),
(47, 10, 'Kistopur', '2020-07-07 09:47:00', '2020-07-07 09:47:00');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` bigint(20) UNSIGNED NOT NULL,
`name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`provider` varchar(121) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`provider_id` varchar(121) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`email_verified_at` timestamp NULL DEFAULT NULL,
`password` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `phone`, `provider`, `provider_id`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`) VALUES
(2, 'user', '[email protected]', '01878377565', NULL, NULL, '2020-04-25 04:59:02', '$2y$10$Q0v2cnf6.6ta6yH3xa5AeOnaaLpHhken44M1.PJjyFMlavQczz5Au', NULL, '2020-04-25 04:57:57', '2020-04-25 04:59:02'),
(3, 'newuser', '[email protected]', '01788888888', NULL, NULL, '2020-04-25 05:56:07', '$2y$10$OpwV3y4D2b1evPIyxRrR.OpEQTL4DxAxbBztgNipOkuWN9Ev9GLIy', NULL, '2020-04-25 05:34:51', '2020-04-25 05:59:17'),
(10, 'Arman', '[email protected]', '01733455325', NULL, NULL, '2020-11-19 04:36:55', '$2y$10$efxqQTe3G2TWzvV9vNm7N.LgAPyXpVRQRso86enDnNUc.GLBUp146', NULL, '2020-11-19 04:35:57', '2020-11-19 04:36:55');
-- --------------------------------------------------------
--
-- Table structure for table `user_properties`
--
CREATE TABLE `user_properties` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(11) DEFAULT NULL,
`city_id` int(11) DEFAULT NULL,
`subcity_id` int(11) DEFAULT NULL,
`name` varchar(121) COLLATE utf8mb4_unicode_ci NOT NULL,
`email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`subcity` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`bedroom` int(11) NOT NULL,
`bathroom` int(11) NOT NULL,
`parking` int(11) DEFAULT NULL,
`type` text COLLATE utf8mb4_unicode_ci NOT NULL,
`kitchen` int(11) NOT NULL,
`area` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`price` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`discount_price` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`total_price` varchar(111) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`category` varchar(19) COLLATE utf8mb4_unicode_ci NOT NULL,
`floor` varchar(12) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`details` varchar(9990) COLLATE utf8mb4_unicode_ci NOT NULL,
`video` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`purpose` varchar(19) COLLATE utf8mb4_unicode_ci NOT NULL,
`image_one` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image_two` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`image_three` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL,
`status` int(240) NOT NULL,
`property_code` varchar(99) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`map_link` mediumtext COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`date` varchar(999) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`month` varchar(999) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`year` varchar(999) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`trend` int(9) DEFAULT NULL,
`best_rated` int(9) DEFAULT NULL,
`hot_new` int(9) DEFAULT NULL,
`service_charge` varchar(11) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`added_by` varchar(19) COLLATE utf8mb4_unicode_ci DEFAULT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `user_properties`
--
INSERT INTO `user_properties` (`id`, `user_id`, `city_id`, `subcity_id`, `name`, `email`, `phone`, `address`, `subcity`, `bedroom`, `bathroom`, `parking`, `type`, `kitchen`, `area`, `price`, `discount_price`, `total_price`, `category`, `floor`, `details`, `video`, `purpose`, `image_one`, `image_two`, `image_three`, `status`, `property_code`, `map_link`, `date`, `month`, `year`, `trend`, `best_rated`, `hot_new`, `service_charge`, `added_by`, `created_at`, `updated_at`) VALUES
(1, NULL, 2, 44, 'Ariful Islam', '[email protected]', '01877766677', '39 No. South Polton Ward', 'Noya Polton', 4, 2, 0, 'Flat', 1, '1,316 sqft', '35,000', NULL, '35000', 'Family', '3rd', '<ol><li>This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances.Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li></ol><div><span style=\"white-space:pre\"> </span></div><ul><li>We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668676643142012.jpg', 'public/media/user_property/1668676651448244.jpg', 'public/media/user_property/1668676660536732.jpg', 1, 'BW-593643', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.3194984620754!2d90.41210331493279!3d23.735983484596474!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b85f081b9b07%3A0x768a0f336e6c9806!2zTmF5YSBQYWx0YW4gSmFtZSBNYXNqaWQg4Kao4Kef4Ka-IOCmquCmsuCnjeCmn-CmqCDgppzgpr7gpq7gp4cg4Kau4Ka44Kac4Ka_4Kam!5e0!3m2!1sen!2sbd!4v1605685114222!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:20:34', '2020-06-01 20:20:34'),
(2, NULL, 2, 28, 'Sadab hasan', '[email protected]', '01874532626', 'Kalabagan 1st Lane, Kalabagan', 'Nawabganj', 3, 1, 1, 'Flat', 1, '1,216 sqft', '9,000,000', NULL, '9000000', 'Bachelor', '5th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan.</li><li> The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li> Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Sale', 'public/media/user_property/1668687521515573.jpg', 'public/media/user_property/1668687554043453.jpg', 'public/media/user_property/1668687561852768.jpg', 1, 'BW-760855', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.6778267255536!2d90.37473146493257!3d23.723196434602745!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b8d3a0d164e7%3A0xd9fcbd41aac70671!2sNawabganj%20Bazar%2C%20Nilambar%20Shaha%20Rd%2C%20Dhaka%201205!5e0!3m2!1sen!2sbd!4v1605684813046!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-10 15:57:49', '2020-06-01 20:36:10'),
(3, 2, 1, 2, 'Arman', '[email protected]', '0181111112', 'Shanti Nagar R/A, Atorar Dipo', 'Muradpur', 4, 3, 2, 'Flat', 2, '1,316 sqft', '55,000', '53,000', '53100', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. </li><li>It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li> All the washrooms are finished with the quality and durable fixtures.</li><li> You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>We are here to assist you if you are thinking of starting days in a standard flat and make it your home. </li><li>This flat for sale is completed with a great floor plan. </li><li>The balconies would refill the happy time with your family after a hectic day from the daily chores. </li><li>Water, gas & electricity supply is also available for this flat.</li></ol><ul><li>- Just give us a call right away to win the deal offered.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668688678296328.jpg', 'public/media/user_property/1668688688998785.jpg', 'public/media/user_property/1668688706281642.jpg', 1, 'BW-840463', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '05-07-20', 'July', '2020', NULL, 1, 1, '100', NULL, '2020-05-01 20:17:50', '2020-05-01 20:17:50'),
(4, 3, 2, 12, 'Irfan Chowdhury', '[email protected]', '01934555325', 'Prosanti Residential Area', 'Mirpur', 4, 3, 2, 'Flat', 2, '1,314 sqft', '46,000', NULL, '46200', 'Family', '3rd', '<ol><li> Showing by Private Appt or LB. Contemporary Five Bedroom Three Bath Luxurious Renovated Sunset Home. </li><li>This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, \r\n\r\nCambria quartz counters and stainless steel appliances. </li><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor. Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors,\r\n\r\n LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. </li><li>Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. New systems include copper pipes, electrical, water heater, furnace, roof,\r\n\r\nWIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.\r\n </li></ol>', 'https://www.youtube.com/watch?v=IiflEVYY9j8', 'Rent', 'public/media/user_property/1668675084053458.jpg', 'public/media/user_property/1668675101684732.jpg', 'public/media/user_property/1668675135181350.jpg', 3, 'BW-888178', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14602.702518325506!2d90.34510367960334!3d23.794562453080236!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c0e96fce29dd%3A0x6ccd9e51aba9e64d!2sMirpur-1%2C%20Dhaka!5e0!3m2!1sen!2sbd!4v1605684727327!5m2!1sen!2sbd', '05-07-20', 'July', '2020', 1, NULL, NULL, '200', NULL, '2020-05-01 20:40:02', '2020-05-01 20:40:02'),
(5, NULL, 2, 29, 'Hasnat karim', '[email protected]', '01733455325', '12 no Prosanti R/a', 'Tejgaon', 3, 1, 1, 'Flat', 1, '1,216 sqft', '22,000', '19,000', '19000', 'Bachelor', '7th', '<ol><li>This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances.Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. </li><li>Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li></ol><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668675853682762.jpg', 'public/media/user_property/1668675866892244.jpg', 'public/media/user_property/1668675876690421.jpg', 3, 'BW-306648', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3654.1367095076016!2d90.40986461493154!3d23.671068584628628!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b97f771456c9%3A0xe7476c9d441f10e7!2sTeghoria%20High%20School!5e0!3m2!1sen!2sbd!4v1605684883013!5m2!1sen!2sbd', '13-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:15:03', '2020-06-01 20:15:03'),
(6, 3, 1, 10, 'Ishtiaque Ahmed', '[email protected]', '01826962626', 'Prosanti R/A, Nabab Habibullah Road', 'A K Khan', 3, 2, 1, 'Flat', 1, '1,316 sqft', '40,000,000', NULL, '40000000', 'Sublet', '2nd', '<ol><li> A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor. </li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This vacant place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li> We think a lot of crucial facts while we think about getting new office space in a new location. </li><li>This place is giving you all these benefits along with good privacy and all-time utility supplies.</li><li>So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable deal it can be for you. \r\n </li></ol>', 'https://www.youtube.com/watch?v=IiflEVYY9j8', 'Sale', 'public/media/user_property/1668676215048233.jpg', 'public/media/user_property/1668676224760384.jpg', 'public/media/user_property/1668676233210487.jpg', 1, 'BW-398293', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '09-05-20', 'May', '2020', NULL, NULL, 1, NULL, NULL, '2020-05-09 15:41:34', '2020-05-09 15:41:34'),
(7, 2, 2, 42, 'Sabbir Ahmed', '[email protected]', '01877777777', '39 No. South C&B Ward', 'Savar', 1, 1, 0, 'Flat', 1, '1,716 sqft', '15,000', '14,000', '14000', 'Bachelor', '7th', '<ol><li>WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer. </li><li>Intercom, Safety Grill, Govt. gas connection, Electric connection, Geyser\r\n--Elevator, Security guard, Generator, CCTV, WASA connection, Water tank,</li><li> We think a lot of crucial facts while we think about getting new office space in a new location.</li><li> This place is giving you all these benefits along with good privacy and all-time utility supplies.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li></ol><p> - So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable deal it can be for you. </p>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668677138911157.jpg', 'public/media/user_property/1668677148479916.jpg', 'public/media/user_property/1668677158315827.jpg', 1, 'BW-714400', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3649.0997335824104!2d90.256795814935!3d23.850591984539946!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755ebd3a31fc6e1%3A0xe55aca4d05ef4fa2!2sThai%20Shop%20SAVAR%20NEW%20MARKET%20SAVAR%20DHAKA!5e0!3m2!1sen!2sbd!4v1605684973910!5m2!1sen!2sbd', '09-03-20', 'March', '2020', NULL, NULL, 1, NULL, NULL, '2020-05-09 15:50:34', '2020-05-09 15:50:34'),
(8, 2, 1, 43, 'Nayan Chy', '[email protected]', '01753595454', '3 No Ward, Mirbari,Kadalpur', 'GEC', 14, 11, 1, 'Home', 7, '1,319 sqft', '45,000,000', NULL, '45000000', 'Family', NULL, '<ol><li> Magnificent 16,000 square foot mansion with panoramic views of the Golden Gate Bridge, Palace of Fine Arts, Alcatraz, Angel Island.</li><li> Completely renovated with exquisite architectural detailing, 7 bedrooms, 8 fabulous full bathrooms and 3 half baths, and 8 marble fireplaces. </li><li>Elevator to all floors including huge roof deck. Close to distinguished schools and Union and Fillmore Street stores and restaurants.</li><li> Prestigious 2008 San Francisco Decorator Showcase. </li><li>This is a beautiful apartment with massive open space and open lights from all sides and very quiet and peaceful\r\n -Furnished details\r\n Indoor\r\n Intercom, </li><li>Safety Grill, Govt. gas connection, Electric connection, Geyser\r\n\r\n Outdoor\r\n Elevator, Security guard, Generator, CCTV, WASA connection, Water tank, Guard\'s room</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. \r\n </li></ol>', 'https://www.youtube.com/watch?v=IiflEVYY9j8', 'Sale', 'public/media/user_property/1668676313006312.jpg', 'public/media/user_property/1668676321186811.jpg', 'public/media/user_property/1668676337705962.jpg', 2, 'BW-465488', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.868349738098!2d91.81792071490693!3d22.358599285293348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd890302b7dc7%3A0x8079b24b40e312d6!2sGEC%20Convention%20Center%20Helipad!5e0!3m2!1sen!2sbd!4v1605684368092!5m2!1sen!2sbd', '05-07-20', 'July', '2020', NULL, 1, NULL, NULL, NULL, '2020-05-10 10:17:45', '2020-05-10 10:17:45'),
(9, NULL, 2, 12, 'Habib alam', '[email protected]', '01733455325', '3 No Road,Section 10', 'Mirpur', 6, 4, 1, 'Flat', 1, '1,316 sqft', '9,900,000', NULL, '9900000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. </li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Sale', 'public/media/user_property/1668688587049466.jpg', 'public/media/user_property/1668688598946440.jpg', 'public/media/user_property/1668688607936854.jpg', 1, 'BW-789766', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14602.702518325506!2d90.34510367960334!3d23.794562453080236!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c0e96fce29dd%3A0x6ccd9e51aba9e64d!2sMirpur-1%2C%20Dhaka!5e0!3m2!1sen!2sbd!4v1605684727327!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:42:37', '2020-06-01 20:42:37'),
(10, NULL, 2, 44, 'Shakaoat Hossen', '[email protected]', '01811771112', '8 No Road,BM Residential Area', 'Noya Polton', 7, 5, 1, 'Home', 3, '1,516 sqft', '50,000,000', NULL, '50000000', 'Family', NULL, '<ol><li>Showing by Private Appt or LB. Contemporary Five Bedroom Three Bath Luxurious Renovated Sunset Home.</li><li> This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances. </li><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor. Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. </li><li>Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.\r\n </li></ol>', 'https://www.youtube.com/watch?v=IiflEVYY9j8', 'Sale', 'public/media/user_property/1668677034490158.jpg', 'public/media/user_property/1668677024132704.jpg', 'public/media/user_property/1668677054749372.jpg', 1, 'BW-646347', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.3194984620754!2d90.41210331493279!3d23.735983484596474!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b85f081b9b07%3A0x768a0f336e6c9806!2zTmF5YSBQYWx0YW4gSmFtZSBNYXNqaWQg4Kao4Kef4Ka-IOCmquCmsuCnjeCmn-CmqCDgppzgpr7gpq7gp4cg4Kau4Ka44Kac4Ka_4Kam!5e0!3m2!1sen!2sbd!4v1605685114222!5m2!1sen!2sbd', '10-05-20', 'May', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-10 15:57:46', '2020-05-10 15:57:46'),
(11, 2, 1, 45, 'Ariful Islam', '[email protected]', '01877766677', 'BMC R/A,Brammonhat,Maijdee', 'Noakhali', 3, 2, 1, 'Flat', 1, '1,316 sqft', '15,000', NULL, '15000', 'Sublet', '2nd', '<ol><li> Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li> New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.\r\n </li></ol>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668674995999385.jpg', 'public/media/user_property/1668675006230730.jpg', 'public/media/user_property/1668675015256264.jpg', 3, 'BW-889258', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.3194984620754!2d90.41210331493279!3d23.735983484596474!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b85f081b9b07%3A0x768a0f336e6c9806!2zTmF5YSBQYWx0YW4gSmFtZSBNYXNqaWQg4Kao4Kef4Ka-IOCmquCmsuCnjeCmn-CmqCDgppzgpr7gpq7gp4cg4Kau4Ka44Kac4Ka_4Kam!5e0!3m2!1sen!2sbd!4v1605685114222!5m2!1sen!2sbd', '05-06-20', 'June', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-10 16:15:19', '2020-05-10 16:15:19'),
(12, 3, 1, 7, 'Emon Chowdhury', '[email protected]', '01826232626', '3 No. Panchlaish Ward', 'Agrabad', 3, 2, 1, 'Flat', 1, '1700 sqft', '20000', '18,000', '18000', 'Bachelor', '7th', '<p> </p><ol><li>This vacant place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport. </li><li>We think a lot of crucial facts while we think about getting new office space in a new location. </li><li>This place is giving you all these benefits along with good privacy and all-time utility supplies.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable deal it can be for you.\r\n </li></ol>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668686425853248.jpg', 'public/media/user_property/1668686467100160.jpg', 'public/media/user_property/1668686483780345.jpg', 1, 'BW-991331', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7381.58205313981!2d91.80911932473637!3d22.323741691245488!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd8b5353672d5%3A0x7e873374534df3f1!2sAgrabad%20Commercial%20Area%2C%20Chattogram!5e0!3m2!1sen!2sbd!4v1605683841574!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-11 18:32:41', '2020-05-11 18:32:41'),
(13, NULL, 2, 44, 'Sakil Ahmed', '[email protected]', '01874532626', '102.A.D, 5no Sector', 'Noya Polton', 16, 9, 1, 'Home', 5, '1,566 sqft', '12,000,000', NULL, '12000000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment With Imported Fittings. Here are just a few of its wonderful features: Balcony, </li><li>24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Sale', 'public/media/user_property/1668676072191210.jpg', 'public/media/user_property/1668676081082096.jpg', 'public/media/user_property/1668676097984241.jpg', 1, 'BW-371583', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.3194984620754!2d90.41210331493279!3d23.735983484596474!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b85f081b9b07%3A0x768a0f336e6c9806!2zTmF5YSBQYWx0YW4gSmFtZSBNYXNqaWQg4Kao4Kef4Ka-IOCmquCmsuCnjeCmn-CmqCDgppzgpr7gpq7gp4cg4Kau4Ka44Kac4Ka_4Kam!5e0!3m2!1sen!2sbd!4v1605685114222!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:47:32', '2020-06-01 20:47:32'),
(14, 2, 2, 4, 'Faiaz Rahman', '[email protected]', '01755563634', 'Chand Mia Road, 4 No Chandgaon Ward', 'Dhanmondi', 10, 8, 2, 'Home', 8, '3,010 sqft', '130,000,000', NULL, '130000000', 'Family', NULL, '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in. </li><li>It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. A great number of groceries, school, colleges and bus stops are also located in the nearby area. \r\n </li></ol>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1668686230358919.jpg', 'public/media/user_property/1668686243140201.jpg', 'public/media/user_property/1668686263071217.jpg', 1, 'BW-968529', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3651.899205867239!2d90.37139331493307!3d23.750973484589124!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755bf4d6018f643%3A0x603d2d083289b4a3!2sDhanmondi%2032%20Road%20Bridge%2C%20Dhanmondi%20Bridge%2C%20Dhaka%201209!5e0!3m2!1sen!2sbd!4v1605684555916!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-11 18:38:17', '2020-05-11 18:38:17'),
(15, 3, 2, 8, 'Azam Khan', '[email protected]', '01811412212', '3 No. Panchlaish Ward, Bayazid', 'Shabag', 12, 10, 2, 'Home', 8, '1,816 sqft', '120,000,000', NULL, '120000000', 'Bachelor', NULL, '<ol><li> We are here to assist you if you are thinking of starting days in a standard flat and make it your home. </li><li>This Home offering one of its best properties to decide your permanent address. This flat for sale is completed with a great floor plan. </li><li>The balconies would refill the happy time with your family after a hectic day from the daily chores. </li><li>Water, gas & electricity supply is also available for this flat. </li><li>\r\n\r\nJust give us a call right away to win the deal offered.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li> You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. \r\n </li></ol>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1668675067886538.jpg', 'public/media/user_property/1668675038154368.jpg', 'public/media/user_property/1668675048690675.jpg', 2, 'BW-596873', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.2145805089535!2d90.39207231493289!3d23.73972628459464!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b978e41d0927%3A0xb3b75efd89a1700a!2sShabagh!5e0!3m2!1sen!2sbd!4v1605684617436!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-11 18:41:40', '2020-05-11 18:41:40'),
(16, 2, 2, 28, 'Sazzad Hossen', '[email protected]', '01733455325', 'Nabab Habibullah Road,Adamji', 'Nawabganj', 4, 3, 2, 'Flat', 1, '1,550 sqft', '50,000', NULL, '50000', 'Sublet', '2nd', '<ol><li> A beautiful, well ventilated and open flat is ready to move in the amicable locality of Mirpur. </li><li>To make sure you are gratified with the home that has always been pictured in your mind, we have enlisted the image of this flat below. Utilities are readily available in this apartment.</li><li> There are balconies to make your apartment life more comfortable in the flat.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. <br></li><li> \r\n\r\n Make yourself a happy buyer by calling us about this beautiful apartment right away!\r\n </li></ol>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1668675309682250.jpg', 'public/media/user_property/1668674961492518.jpg', 'public/media/user_property/1668674976602292.jpg', 2, 'BW-422013', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.6778267255536!2d90.37473146493257!3d23.723196434602745!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b8d3a0d164e7%3A0xd9fcbd41aac70671!2sNawabganj%20Bazar%2C%20Nilambar%20Shaha%20Rd%2C%20Dhaka%201205!5e0!3m2!1sen!2sbd!4v1605684813046!5m2!1sen!2sbd', '05-07-20', 'July', '2020', 1, NULL, NULL, NULL, NULL, '2020-05-11 18:44:47', '2020-05-11 18:44:47'),
(17, 2, 2, 29, 'Jahed khan', '[email protected]', '01817114412', 'West Khulshi, 9 No. North Pahartali Ward,', 'Tejgaon', 4, 2, 2, 'Flat', 2, '1,555 sqft', '40,000', NULL, '40000', 'Family', '6th', '<ol><li> This vacant place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport. </li><li>We think a lot of crucial facts while we think about getting new office space in a new location. </li><li>This place is giving you all these benefits along with good privacy and all-time utility supplies. </li><li>So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable deal it can be for you.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. \r\n </li></ol>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668685862214769.jpg', 'public/media/user_property/1668685979884576.jpg', 'public/media/user_property/1668656762438982.jpg', 1, 'BW-914106', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3654.1367095076016!2d90.40986461493154!3d23.671068584628628!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b97f771456c9%3A0xe7476c9d441f10e7!2sTeghoria%20High%20School!5e0!3m2!1sen!2sbd!4v1605684883013!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-11 18:47:06', '2020-05-11 18:47:06'),
(18, 3, 2, 42, 'Bellal Alam', '[email protected]', '0185636355', 'West Shewrapara, Adamji', 'Savar', 2, 1, 0, 'Flat', 1, '1200 sqft', '25,000', '24,000', '24000', 'Bachelor', '2nd', '<ol><li> A well constructed and nicely planned commercial space is up for sale. </li><li>The property is located in a place that will provide you with location benefits which are undoubtedly one of the most crucial elements for a successful business. </li><li>This is the exact location to run your business smoothly. </li><li> \r\n\r\nFeel free to reach us for your further queries.</li><li> We think a lot of crucial facts while we think about getting new office space in a new location.</li><li> This place is giving you all these benefits along with good privacy and all-time utility supplies.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable deal it can be for you. \r\n </li></ol>', 'https://www.youtube.com/watch?v=IiflEVYY9j8', 'Rent', 'public/media/user_property/1668676538357618.jpg', 'public/media/user_property/1668676550811136.jpg', 'public/media/user_property/1668676559627806.jpg', 1, 'BW-531384', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3649.0997335824104!2d90.256795814935!3d23.850591984539946!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755ebd3a31fc6e1%3A0xe55aca4d05ef4fa2!2sThai%20Shop%20SAVAR%20NEW%20MARKET%20SAVAR%20DHAKA!5e0!3m2!1sen!2sbd!4v1605684973910!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-11 18:50:18', '2020-05-11 18:50:18'),
(19, 2, 3, 14, 'Alam Khan', '[email protected]', '0182626244', 'Borobag, South Nazimpur', 'Durgapur', 13, 10, 2, 'Home', 9, '1,550 sqft', '110,000,000', NULL, '110000000', 'Family', NULL, '<p> </p><ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan.</li><li>The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This flat for sale is completed with a great floor plan.</li><li>The balconies would refill the happy time with your family after a hectic day from the daily chores.</li><li>Water, gas & electricity supply is also available for this flat. </li><li>We suggest you make up your mind and steal this deal offered at best deal.</li></ol>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Sale', 'public/media/user_property/1668676466849031.jpg', 'public/media/user_property/1668676475673459.jpg', 'public/media/user_property/1668676498287320.jpg', 1, 'BW-481752', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14528.468746588776!2d88.75854482980836!3d24.44671924801001!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39fbf5c06b065de9%3A0xdd8592e0d156d6f0!2sDurgapur!5e0!3m2!1sen!2sbd!4v1605685807793!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-11 18:54:37', '2020-05-11 18:54:37'),
(20, 2, 3, 15, 'Ayan Chowdhury', '[email protected]', '0182626463', 'Nabab Habibullah Road,CDA R/A', 'Charghat', 2, 1, 1, 'Flat', 1, '1,455 sqft', '12,000', NULL, '12000', 'Bachelor', '2nd', '<ol><li> A beautiful, well ventilated and open flat is ready to move in the amicable locality of Mirpur.</li><li> To make sure you are gratified with the home that has always been pictured in your mind, </li><li>we have enlisted the image of this flat below. Utilities are readily available in this apartment. There are balconies to make your apartment life more comfortable in the flat. </li><li>\r\n\r\n Make yourself a happy buyer by calling us about this beautiful apartment right away!</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. \r\n </li></ol>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1668677209737538.jpg', 'public/media/user_property/1668677218299534.jpg', 'public/media/user_property/1668677231872898.jpg', 1, 'BW-731906', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3636.8250273267813!2d88.74622821494346!3d24.28284128432956!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39fbf9aabf16723d%3A0x58eabe8961ac57bd!2sCharghat%20Bazaar%20Durga%20Mondir!5e0!3m2!1sen!2sbd!4v1605685870062!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, 1, NULL, NULL, NULL, '2020-05-11 18:57:17', '2020-05-11 18:57:17'),
(21, 2, 3, 16, 'jahangir alam', '[email protected]', '01811116345', 'Section 10, Nobab ali Road', 'Bagmara', 4, 3, 3, 'Flat', 2, '1,252 sqft', '40,000', NULL, '40000', 'Family', '3rd', '<ol><li><span style=\"font-size: 0.875rem;\">Showing by Private Appt or LB. Contemporary Five Bedroom Three Bath Luxurious Renovated Sunset Home. </span></li><li><span style=\"font-size: 0.875rem;\">This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances. </span></li><li><span style=\"font-size: 0.875rem;\">A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor. </span></li><li><span style=\"font-size: 0.875rem;\">Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </span></li><li><span style=\"font-size: 0.875rem;\">Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</span></li><li><span style=\"font-size: 0.875rem;\"> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </span></li><li><span style=\"font-size: 0.875rem;\">New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</span><br></li></ol>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668686302446950.jpg', 'public/media/user_property/1668686323541508.jpg', 'public/media/user_property/1668656903827973.jpg', 1, 'BW-989233', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3628.897148897265!2d88.80558111494892!3d24.558216084197433!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39fc750d279d5ed9%3A0x34802715878a4f56!2sBagmara%20Police%20Station!5e0!3m2!1sen!2sbd!4v1605685941077!5m2!1sen!2sbd', '11-05-20', 'May', '2020', NULL, 1, NULL, NULL, NULL, '2020-05-11 18:59:16', '2020-05-11 18:59:16'),
(22, 3, 4, 13, 'Shah Alam', '[email protected]', '01826262545', 'Satmasjid Road, North khan para', 'Bagherhat', 8, 6, 2, 'Home', 5, '3,010 sqft', '120,000,000', NULL, '120000000', 'Family', NULL, '<ol><li> Showing by Private Appt or LB. Contemporary Five Bedroom Three Bath Luxurious Renovated Sunset Home. This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances. </li><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor. Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li> New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.\r\n </li></ol>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Sale', 'public/media/user_property/1668677074322413.jpg', 'public/media/user_property/1668677095298073.jpg', 'public/media/user_property/1668677117568565.jpg', 1, 'BW-681239', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d117796.67487327367!2d89.68140895703026!3d22.685604916631824!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39fff43dbdfc0fb3%3A0x9606f07a6d8041e6!2sBagerhat%20Sadar%20Upazila!5e0!3m2!1sen!2sbd!4v1605686008854!5m2!1sen!2sbd', '12-04-20', 'April', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-11 19:02:35', '2020-05-11 19:02:35'),
(23, NULL, 4, 30, 'Arshad UL Alam', '[email protected]', '01811315472', 'Bahir Signal, 4 No Nondon Kanon Ward', 'Phultala', 5, 2, 1, 'Flat', 1, '1,316 sqft', '26,000', NULL, '26000', 'Bachelor', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li> Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><p> - Don’t miss this affordable offer and we are just a call away to close the deal for you!</p>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668676122797442.jpg', 'public/media/user_property/1668676133401242.jpg', 'public/media/user_property/1668676144339966.jpg', 1, 'BW-142782', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3673.232785092322!2d89.46802671491838!3d22.978465884975463!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39ff9f4a3b0be6fd%3A0xd1569ec9939a46d4!2sPhultala%20M.M.%20College!5e0!3m2!1sen!2sbd!4v1605686081246!5m2!1sen!2sbd', '12-05-20', 'May', '2020', NULL, 1, NULL, NULL, 'admin', '2020-05-12 07:56:56', '2020-05-12 07:56:56'),
(24, NULL, 4, 31, 'Shohel Rana', '[email protected]', '01736276233', 'West Rupsha, 9 No. North Pahartali Ward,', 'Rupsha', 2, 2, 1, 'Flat', 1, '1,516 sqft', '20,000', '17,000', '17000', 'Sublet', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials.</li><li> A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668675668437195.jpg', 'public/media/user_property/1668675677691945.jpg', 'public/media/user_property/1668675695477636.jpg', 3, 'BW-237224', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d58845.5745324158!2d89.58174468063034!3d22.8080803257649!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39ff9203b1ce5bb1%3A0x17ceb3869c9a314a!2sRupsha%20Upazila!5e0!3m2!1sen!2sbd!4v1605686123558!5m2!1sen!2sbd', '05-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-12 08:01:51', '2020-05-12 08:01:51'),
(25, NULL, 4, 32, 'Khorshed Alam', '[email protected]', '01733455325', 'Chand Mia Road, 4 No Terokhanda', 'Terokhada', 18, 15, 2, 'Home', 13, '2,516 sqft', '120,000,000', NULL, '120000000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. </li><li>It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Sale', 'public/media/user_property/1668675941978040.jpg', 'public/media/user_property/1668675949153154.jpg', 'public/media/user_property/1668675959782938.jpg', 1, 'BW-366243', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d29395.07603690887!2d89.64453202773936!3d22.936062339788464!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39ff9458a42c4cfb%3A0x34f8a1bd34538a99!2sTerokhada!5e0!3m2!1sen!2sbd!4v1605686182430!5m2!1sen!2sbd', '12-05-20', 'May', '2020', NULL, NULL, NULL, '12,000', 'admin', '2020-05-12 08:05:54', '2020-05-12 08:05:54'),
(26, NULL, 5, 20, 'Liton Chy', '[email protected]', '01877675777', 'Shahid Saifuddin Khaled Road, Banaripara', 'Banaripara', 5, 3, 1, 'Flat', 1, '1,216 sqft', '55,000', NULL, '55000', 'Family', '6th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. </li><li>he flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668676356718769.jpg', 'public/media/user_property/1668676366189912.jpg', 'public/media/user_property/1668676375482002.jpg', 1, 'BW-471380', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d29429.85101339078!2d90.12801632754649!3d22.77534814502876!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37554fc328294719%3A0xc3b0376ac7f41c42!2sBanaripara%20Union!5e0!3m2!1sen!2sbd!4v1605690585327!5m2!1sen!2sbd', '12-05-20', 'May', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-12 08:10:56', '2020-05-12 08:10:56'),
(27, NULL, 5, 21, 'Ahmed Anam', '[email protected]', '01734656363', 'Green Valley, Bayazid,Bakerganj', 'Bakerganj', 2, 1, 0, 'Flat', 1, '1,116 sqft', '18,000', NULL, '18000', 'Sublet', '7th', '<ol><li>Showing by Private Appt or LB. . This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances.Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li></ol><div><span style=\"white-space:pre\"> </span></div><ul><li>We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668675629370797.jpg', 'public/media/user_property/1668675636488814.jpg', 'public/media/user_property/1668675647690213.jpg', 1, 'BW-188604', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3685.290973411334!2d90.33842321491012!3d22.530770385204306!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30aacbccf1916827%3A0xca39a803b0688b08!2sBakerganj%20Helipad!5e0!3m2!1sen!2sbd!4v1605690652649!5m2!1sen!2sbd', '05-07-20', 'May', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-12 08:15:21', '2020-05-12 08:15:21');
INSERT INTO `user_properties` (`id`, `user_id`, `city_id`, `subcity_id`, `name`, `email`, `phone`, `address`, `subcity`, `bedroom`, `bathroom`, `parking`, `type`, `kitchen`, `area`, `price`, `discount_price`, `total_price`, `category`, `floor`, `details`, `video`, `purpose`, `image_one`, `image_two`, `image_three`, `status`, `property_code`, `map_link`, `date`, `month`, `year`, `trend`, `best_rated`, `hot_new`, `service_charge`, `added_by`, `created_at`, `updated_at`) VALUES
(28, NULL, 5, 22, 'Saber Khan', '[email protected]', '01827762626', 'West Babugang, 9 No. North pahatali', 'Babuganj', 2, 1, 1, 'Flat', 1, '1,416 sqft', '15000', '14,000', '14000', 'Bachelor', '3rd', '<ol><li>Showing by Private Appt or LB. . This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances.Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors,</li><li> LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. </li><li>Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li></ol><div><span style=\"white-space:pre\"> </span></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668677173100480.jpg', 'public/media/user_property/1668677183381644.jpg', 'public/media/user_property/1668677192972699.jpg', 1, 'BW-724437', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3677.5246127927235!2d90.32277171491545!3d22.820072485055967!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37553824e50669c9%3A0x2adcd0012f8c2379!2sBabuganj%20Thana%20Jame%20Mosque!5e0!3m2!1sen!2sbd!4v1605690706210!5m2!1sen!2sbd', '12-05-20', 'May', '2020', NULL, 1, NULL, NULL, 'admin', '2020-05-12 08:18:39', '2020-05-12 08:18:39'),
(29, NULL, 6, 33, 'Rumel Hossen', '[email protected]', '01833455325', '3 No. Panchlaish Ward, CM avenue', 'Osmani Nagar', 6, 5, 1, 'Flat', 1, '1,316 sqft', '55,000', NULL, '55000', 'Family', '7th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials.</li><li> A great number of groceries, school, colleges and bus stops are also located in the nearby area. This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li> You will have an apt kitchen area to have your desired cookery essentials. A great number of groceries, school, colleges and bus stops are also located in the nearby area. <br></li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668688633873512.jpg', 'public/media/user_property/1668688642885586.jpg', 'public/media/user_property/1668688657572954.jpg', 1, 'BW-819900', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3623.797879719998!2d91.7671556149524!3d24.73381838411366!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x375107f2ddcd5c25%3A0x90a57de0862a48e4!2sOsmaninagar%20Zonal%20Office%2C%20Sylhet%20Palli%20Bidyut%20Samity-1!5e0!3m2!1sen!2sbd!4v1605690763468!5m2!1sen!2sbd', '12-05-20', 'May', '2020', 1, NULL, NULL, NULL, 'admin', '2020-05-12 11:10:19', '2020-05-12 11:10:19'),
(30, NULL, 6, 34, 'Umar Akmal', '[email protected]', '01734656363', 'Satmasjid Road, Sadar Bazar', 'Sylhet Sadar', 5, 3, 1, 'Flat', 1, '1,616 sqft', '30,000', NULL, '30000', 'Bachelor', '3rd', '<div><ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan.</li><li> The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. </li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul></div>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668676272323103.jpg', 'public/media/user_property/1668676279739815.jpg', 'public/media/user_property/1668676291092356.jpg', 3, 'BW-463561', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3618.634285251938!2d91.92875801495597!3d24.91045328403046!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3750533f3991063d%3A0x6933c81dced69490!2sSylhet%20Sadar%20Upazila%20Office!5e0!3m2!1sen!2sbd!4v1605690826871!5m2!1sen!2sbd', '05-10-20', 'October', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-12 11:13:51', '2020-05-12 11:13:51'),
(31, NULL, 6, 35, 'Yousuf Ahmed', '[email protected]', '0183457325', '4no Bahir Signal, Chandgaon', 'Kanaighat', 2, 1, 0, 'Flat', 1, '1,116 sqft', '14,000', '13,000', '13000', 'Sublet', '7th', '<ol><li>A beautiful, well ventilated and open flat is ready to move in the amicable locality of Mirpur. </li><li>To make sure you are gratified with the home that has always been pictured in your mind, we have enlisted the image of this flat below. </li><li>Utilities are readily available in this apartment. There are balconies to make your apartment life more comfortable in the flat. </li><li>This flat for sale is completed with a great floor plan. </li><li>The balconies would refill the happy time with your family after a hectic day from the daily chores. </li><li>Water, gas & electricity supply is also available for this flat.</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. <br></li></ol><div><br></div><ul><li> Make yourself a happy buyer by calling us about this beautiful apartment right away!</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668675590213167.jpg', 'public/media/user_property/1668675597544913.jpg', 'public/media/user_property/1668675608026821.jpg', 2, 'BW-182691', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3615.5645039080205!2d92.25486301495806!3d25.0149098839814!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3750310f20fe24c3%3A0x14aaf752716e9054!2sKanaighat%20College!5e0!3m2!1sen!2sbd!4v1605690877155!5m2!1sen!2sbd', '12-05-20', 'May', '2020', NULL, NULL, NULL, '1,000', 'admin', '2020-05-12 11:18:25', '2020-05-12 11:18:25'),
(32, NULL, 7, 36, 'Khaledul Alam', '[email protected]', '01826562626', '3no Road, CDA Residential Area', 'Nangalkot', 3, 2, 0, 'Flat', 1, '1,316 sqft', '17,000', NULL, '17000', 'Sublet', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials.</li><li> A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li> Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. A great number of groceries, school, colleges and bus stops are also located in the nearby area. <br></li></ol>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668676976981896.jpg', 'public/media/user_property/1668676985234655.jpg', 'public/media/user_property/1668676995121187.jpg', 1, 'BW-632756', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3659.960757163245!2d91.18472231492753!3d23.461879984732356!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37547f30a2a09365%3A0xf8a7cb26cbb54b8f!2sNangalkot%20Upazila%20Complex!5e0!3m2!1sen!2sbd!4v1605690926291!5m2!1sen!2sbd', '12-05-20', 'May', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-12 15:58:41', '2020-05-12 15:58:41'),
(33, NULL, 1, 10, 'Anisul Islalm', '[email protected]', '01829374635', '8 no road, Prosanti Residential Area', 'A K Khan', 4, 3, 1, 'Flat', 1, '1,516 sqft', '30,000', NULL, '30000', 'Family', '7th', '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li> We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies. </li><li>So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li></ol><p></p><ul><li>- We suggest to make up your mind and steal this deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1668675804917079.jpg', 'public/media/user_property/1668675817068329.jpg', 'public/media/user_property/1668675828075669.jpg', 1, 'BW-290203', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '13-05-20', 'May', '2020', NULL, NULL, 1, NULL, 'admin', '2020-05-13 10:37:50', '2020-05-13 10:37:50'),
(34, NULL, 7, 37, 'Hossain Alam', '[email protected]', '01811456112', '4 No Road, West Sherpara, Kadalpur', 'Lalmai', 5, 3, 1, 'Home', 2, '1,566 sqft', '37,000', NULL, '37000', 'Family', '3rd', '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. </li><li>Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door.</li><li> Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li>We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies.</li><li>So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li></ol><div><br></div><ul><li>- We suggest to make up your mind and steal this deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668675159393553.jpg', 'public/media/user_property/1668675170840986.jpg', 'public/media/user_property/1668675182423959.jpg', 4, 'BW-471795', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3660.024773027686!2d91.17595981492747!3d23.459570884733584!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37547f26739b28c1%3A0x7c80529704d0dc59!2sLalmai%20Sanitary%20and%20Tiles!5e0!3m2!1sen!2sbd!4v1605690978143!5m2!1sen!2sbd', '13-05-20', 'May', '2020', 1, NULL, NULL, NULL, 'admin', '2020-05-13 10:54:36', '2020-05-13 10:54:36'),
(35, NULL, 7, 38, 'Jamil Uddin', '[email protected]', '01878747877', '102.A.D, Town Hill', 'Laksam', 13, 8, 1, 'Home', 5, '2,116 sqft', '150,000,000', NULL, '150000000', 'Family', NULL, '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li>We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies.</li></ol><div><br></div><ul><li>- So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li></ul><ul><li>- We suggest to make up your mind and steal this deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1668674849818013.jpg', 'public/media/user_property/1668674859640972.jpg', 'public/media/user_property/1668674874590999.jpg', 0, 'BW-972095', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3665.683188418452!2d91.12187081492361!3d23.25461298483605!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3754846dc6410663%3A0xc87c6a7c012e1ed1!2sLaksam%20Railway%20Junction!5e0!3m2!1sen!2sbd!4v1605691034010!5m2!1sen!2sbd', '13-05-20', 'May', '2020', 1, NULL, NULL, NULL, 'admin', '2020-05-13 10:59:17', '2020-05-13 10:59:17'),
(36, NULL, 7, 39, 'Jahid Hasan', '[email protected]', '01877987777', '5 NO Road, Gohira Nagar R/A', 'Chauddagram', 3, 2, 11, 'Flat', 1, '1,216 sqft', '23,000', NULL, '23500', 'Sublet', '3rd', '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li>We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies.</li></ol><ul><li>- So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li></ul><ul><li>- We suggest to make up your mind and steal this deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668654518493647.jpg', 'public/media/user_property/1668674709753588.jpg', 'public/media/user_property/1668674729927839.jpg', 1, 'BW-195660', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3666.2818902111385!2d91.3101578149232!3d23.23282708484701!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37537bb92c52ed01%3A0xea0adbad6da834cc!2sUpazila%20Parishad%20Chowddagram!5e0!3m2!1sen!2sbd!4v1605691128331!5m2!1sen!2sbd', '05-07-20', 'May', '2020', NULL, 1, NULL, '500', 'admin', '2020-05-13 11:03:09', '2020-05-13 11:03:09'),
(37, 2, 8, 17, 'Amir Khan', '[email protected]', '01826782626', '8 no road, Jorarbag Residential Area', 'Rangpur Sadar', 3, 2, 1, 'Flat', 1, '1,236 sqft', '15,000', NULL, '15000', 'Bachelor', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan.</li><li>The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This flat for sale is completed with a great floor plan.</li><li>The balconies would refill the happy time with your family after a hectic day from the daily chores.</li><li>Water, gas & electricity supply is also available for this flat. </li></ol><ul><li><span style=\"font-size: 0.875rem;\">- Call our agent to be the first and book this flat before anyone else!</span></li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668676417954395.jpg', 'public/media/user_property/1668676431189024.jpg', 'public/media/user_property/1668676442154968.jpg', 1, 'BW-472694', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3592.896647836093!2d89.21953381497369!3d25.773977083631202!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e331ac494e2f55%3A0x29cdaf34872a1ef5!2sRangpur%20Sadar%20Upazila%20Eidgah!5e0!3m2!1sen!2sbd!4v1605691187907!5m2!1sen!2sbd', '15-05-20', 'May', '2020', NULL, NULL, NULL, NULL, NULL, '2020-05-15 10:43:00', '2020-05-15 10:43:00'),
(38, NULL, 8, 18, 'Afif Hossain', '[email protected]', '01878477798', '7 no road, Onnonna Residential Area', 'Kaunia', 5, 3, 1, 'Flat', 1, '1,566 sqft', '35,000', NULL, '35000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in.</li><li> The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials.</li><li> A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668674753279941.jpg', 'public/media/user_property/1668674766782260.jpg', 'public/media/user_property/1668674781016277.jpg', 0, 'BW-943929', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3592.879533946389!2d89.41281081497368!3d25.774542283630886!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e2d6147dc6998f%3A0x2b98e3796128178!2sKaunia%20College!5e0!3m2!1sen!2sbd!4v1605691242911!5m2!1sen!2sbd', '05-07-20', 'May', '2020', NULL, 1, NULL, NULL, 'admin', '2020-05-15 11:46:08', '2020-05-15 11:46:08'),
(39, NULL, 8, 19, 'Tamim Chowdhury', '[email protected]', '01847862626', '3 No Road, Shanti Nagar R/A, Shanti Nogor', 'Gangachhara', 6, 4, 1, 'Flat', 1, '1,876 sqft', '55,000', NULL, '55000', 'Family', '5th', '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li>We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies.</li></ol><ul><li>- So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li></ul><ul><li>- We suggest to make up your mind and steal this deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1668676932436953.jpg', 'public/media/user_property/1668676941313673.jpg', 'public/media/user_property/1668676949160564.jpg', 1, 'BW-626017', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3590.458150880238!2d89.21447181497534!3d25.854394383594773!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e33a83136f2df5%3A0xc64b16af85f31d89!2sGangachara%20Mohila%20Degree%20College!5e0!3m2!1sen!2sbd!4v1605691300371!5m2!1sen!2sbd', '15-05-20', 'May', '2020', NULL, 1, NULL, NULL, 'admin', '2020-05-15 15:35:08', '2020-05-15 15:35:08'),
(40, NULL, 2, 12, 'Irfan Hasan', '[email protected]', '01877766677', '12 No Prosanti R/a', 'Mirpur', 5, 2, 1, 'Flat', 1, '1,216 sqft', '8,900,000', NULL, '8900000', 'Family', '5th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. </li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1668688742726367.jpg', 'public/media/user_property/1668688761904714.jpg', 'public/media/user_property/1668688776198974.jpg', 1, 'BW-846585', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14602.702518325506!2d90.34510367960334!3d23.794562453080236!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c0e96fce29dd%3A0x6ccd9e51aba9e64d!2sMirpur-1%2C%20Dhaka!5e0!3m2!1sen!2sbd!4v1605684727327!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:44:52', '2020-06-01 20:44:52'),
(41, NULL, 1, 1, 'Rabiul Hossen Shumon', '[email protected]', '01733455325', 'Alam Bari, Noapara', 'Raozan', 14, 8, 1, 'Home', 6, '1,566 sqft', '10,800,000', '10,500,000', '10500000', 'Family', NULL, '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. </li><li>Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door.</li><li> Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li>We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies.</li></ol><div><br></div><ul><li>- So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li></ul><div><br></div><ul><li>- We suggest to make up your mind and steal this deal.</li></ul><div><br></div>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1668784741879582.jpg', 'public/media/user_property/1668784782379183.jpg', 'public/media/user_property/1668784909048072.jpg', 2, 'BW-768491', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '30-05-20', 'May', '2020', NULL, 1, NULL, NULL, 'admin', '2020-05-30 20:26:46', '2020-05-30 20:26:46'),
(42, NULL, 1, 2, 'Zico Ahmed', '[email protected]', '01789876888', 'Hill View R/A, Bayazid', 'Muradpur', 5, 3, 0, 'Flat', 1, '1,316 sqft', '30,000', NULL, '30000', 'Bachelor', '3rd', '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li>We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies.</li></ol><div><br></div><ul><li>- So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li></ul><ul><li>- We suggest to make up your mind and steal this deal.</li></ul><div><br></div>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668675744609538.jpg', 'public/media/user_property/1668675771043937.jpg', 'public/media/user_property/1668675779917586.jpg', 3, 'BW-278360', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '04-07-20', 'July', '2020', NULL, 1, NULL, NULL, 'admin', '2020-05-30 20:39:40', '2020-05-30 20:39:40'),
(43, NULL, 1, 10, 'Sazzad Hossen Chy', '[email protected]', '01733455325', '8 no road, Prosanti R/A', 'A K Khan', 4, 2, 1, 'Flat', 1, '1,566 sqft', '32000', '30,000', '30000', 'Bachelor', '2nd', '<ol><li> This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances.Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows.</li><li> Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li> New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li></ol><div><span style=\"white-space:pre\"> </span></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1668676168892953.jpg', 'public/media/user_property/1668676177492497.jpg', 'public/media/user_property/1668676189994647.jpg', 1, 'BW-379877', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '30-05-20', 'May', '2020', 1, NULL, NULL, NULL, 'admin', '2020-05-30 20:44:29', '2020-05-30 20:44:29'),
(44, NULL, 2, 4, 'Azhar Alam', '[email protected]', '01747455325', 'Shanti Nagar R/A, Dhanmondi', 'Dhanmondi', 6, 4, 1, 'Flat', 1, '1,735 sqft', '15,000,000', NULL, '15000000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!<span style=\"font-size: 0.875rem;\"></span></li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Sale', 'public/media/user_property/1668686116338598.jpg', 'public/media/user_property/1668686080711683.jpg', 'public/media/user_property/1668686168272322.jpg', 1, 'BW-936835', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3651.899205867239!2d90.37139331493307!3d23.750973484589124!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755bf4d6018f643%3A0x603d2d083289b4a3!2sDhanmondi%2032%20Road%20Bridge%2C%20Dhanmondi%20Bridge%2C%20Dhaka%201209!5e0!3m2!1sen!2sbd!4v1605684555916!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 19:46:48', '2020-06-01 19:46:48'),
(45, NULL, 2, 8, 'Xamil hasan', '[email protected]', '01874532626', '102.A.D, R.S Road,', 'Shabag', 4, 2, 1, 'Flat', 1, '1,516 sqft', '30,000', NULL, '30000', 'Bachelor', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in.</li><li> The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures.</li><li> You will have an apt kitchen area to have your desired cookery essentials. A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 4 large bedrooms and 2 Washrooms With Imported Fittings. Here are just a few of its wonderful features: Balcony,</li><li>24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1668688892157345.jpg', 'public/media/user_property/1668688901140301.jpg', 'public/media/user_property/1668688919392568.jpg', 1, 'BW-898312', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.2145805089535!2d90.39207231493289!3d23.73972628459464!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b978e41d0927%3A0xb3b75efd89a1700a!2sShabagh!5e0!3m2!1sen!2sbd!4v1605684617436!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:06:40', '2020-06-01 20:06:40'),
(46, NULL, 2, 12, 'Tushar Das', '[email protected]', '01733455325', '8 No Road, Green View R/A', 'Mirpur', 3, 2, 1, 'Flat', 1, '1,216 sqft', '15,000', NULL, '15000', 'Sublet', '5th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. </li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668676885339454.jpg', 'public/media/user_property/1668676895757956.jpg', 'public/media/user_property/1668676907506682.jpg', 1, 'BW-607277', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14602.702518325506!2d90.34510367960334!3d23.794562453080236!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c0e96fce29dd%3A0x6ccd9e51aba9e64d!2sMirpur-1%2C%20Dhaka!5e0!3m2!1sen!2sbd!4v1605684727327!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:10:06', '2020-06-01 20:10:06'),
(47, NULL, 2, 28, 'Sayem Alam', '[email protected]', '01877766677', '5 No Road,Mirgang', 'Nawabganj', 5, 3, 1, 'Flat', 2, '1,316 sqft', '45000', '40,000', '40000', 'Family', '7th', '<ol><li>This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, Cambria quartz counters and stainless steel appliances.Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. </li><li>Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li></ol><div><span style=\"white-space:pre\"> </span></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668688531244862.jpg', 'public/media/user_property/1668688541012950.jpg', 'public/media/user_property/1668688553850949.jpg', 1, 'BW-782076', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.6778267255536!2d90.37473146493257!3d23.723196434602745!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755b8d3a0d164e7%3A0xd9fcbd41aac70671!2sNawabganj%20Bazar%2C%20Nilambar%20Shaha%20Rd%2C%20Dhaka%201205!5e0!3m2!1sen!2sbd!4v1605684813046!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:13:10', '2020-06-01 20:13:10'),
(48, NULL, 2, 42, 'Shahajan Hossen', '[email protected]', '01733455325', 'Chand Mia Road, 4 No Chandgaon Ward', 'Savar', 4, 2, 0, 'Flat', 1, '1,566 sqft', '7,800,000', '7,500,000', '7501000', 'Family', '5th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. </li><li>It is wonderful and comfortable flat for a family to move in.</li><li> The respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li> A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li> Here are just a few of its wonderful features: Balcony, </li><li>24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Sale', 'public/media/user_property/1668675561763046.jpg', 'public/media/user_property/1668675353005395.jpg', 'public/media/user_property/1668675369354284.jpg', 3, 'BW-122019', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3649.0997335824104!2d90.256795814935!3d23.850591984539946!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755ebd3a31fc6e1%3A0xe55aca4d05ef4fa2!2sThai%20Shop%20SAVAR%20NEW%20MARKET%20SAVAR%20DHAKA!5e0!3m2!1sen!2sbd!4v1605684973910!5m2!1sen!2sbd', '21-09-20', 'September', '2020', NULL, NULL, NULL, '1000', 'admin', '2020-06-01 20:32:22', '2020-06-01 20:32:22'),
(49, NULL, 2, 42, 'Habib Ullah', '[email protected]', '01874532626', '39 No. South Savar Ward,', 'Savar', 6, 3, 1, 'Flat', 1, '1,516 sqft', '50,000', NULL, '50000', 'Family', '2nd', '<ol><li>This meticulously reimagined smart tech enabled home offers a bright open Chef\'s kitchen, Kraftmaid cabinets, </li><li>Cambria quartz counters and stainless steel appliances.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures. </li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. </li><li>Living room features a modern electric fireplace and beautiful display shelving. </li><li>Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard. </li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. </li><li>Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li></ol><div><span style=\"white-space:pre\"> </span></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1668677250437585.jpg', 'public/media/user_property/1668677259375934.jpg', 'public/media/user_property/1668677268890970.jpg', 1, 'BW-750240', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3649.0997335824104!2d90.256795814935!3d23.850591984539946!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755ebd3a31fc6e1%3A0xe55aca4d05ef4fa2!2sThai%20Shop%20SAVAR%20NEW%20MARKET%20SAVAR%20DHAKA!5e0!3m2!1sen!2sbd!4v1605684973910!5m2!1sen!2sbd', '04-07-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:18:00', '2020-06-01 20:18:00'),
(52, 2, 1, 45, 'Azad Ali', '[email protected]', '01834455325', 'Shahid Saifuddin Khaled Road, Maijdee', 'Noakhali', 4, 3, 1, 'Flat', 2, '1,316 sqft', '27000', '25,000', '25000', 'Sublet', '3rd', '<ol><li> This vacant place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport. </li><li>We think a lot of crucial facts while we think about getting new office space in a new location. </li><li>This place is giving you all these benefits along with good privacy and all-time utility supplies. </li><li>So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable deal it can be for you. </li><li> \r\n\r\n1 parking \r\n\r\nWe suggest to make up your mind and steal this deal.</li><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. \r\n </li></ol>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668654696552579.jpg', 'public/media/user_property/1668674893821538.jpg', 'public/media/user_property/1668674904163055.jpg', 3, 'BW-236862', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d29408.97274806483!2d91.07860622766228!3d22.871966241874794!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3754a4f60180b351%3A0xaf35df91820c2a37!2sMaijdee!5e0!3m2!1sen!2sbd!4v1605684474073!5m2!1sen!2sbd', '04-07-20', 'July', '2020', 1, 1, NULL, NULL, NULL, '2020-05-11 18:35:39', '2020-05-11 18:35:39'),
(53, NULL, 2, 44, 'Asif Ahmed', '[email protected]', '01733455325', 'Modina Tower, 8 no road, Prosanti Abasik', 'Noya Polton', 5, 3, 1, 'Flat', 1, '1,316 sqft', '9,500,000', NULL, '9500000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. The respective unit welcomes with a great floor plan.</li><li>The flat has got amazing bedrooms with modish tiled flooring. All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials. A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.<br></li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1668675904072771.jpg', 'public/media/user_property/1668675913766628.jpg', 'public/media/user_property/1668675924828856.jpg', 1, 'BW-358434', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3652.3643293987643!2d90.41129016493278!3d23.7343840345973', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:39:46', '2020-06-01 20:39:46'),
(55, NULL, 1, 1, 'Taslim Emon', '[email protected]', '01894545644', 'Kholilabad, Noapara', 'Raozan', 3, 2, 1, 'Flat', 1, '1,316 sqft', '20000', '18,000', '18000', 'Bachelor', '7th', '<ol><li>If you are looking for a home that will make your everyday life easy then check this lovely apartment. The position of the house makes sure you get everyday necessity within your reach.</li><li>The locality around the home is very pleasant. The respective unit welcomes with a great floor plan.</li><li>The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li></ol><ul><li>-Indoor :</li></ul><div> Intercom, Safety Grill, Govt. gas connection, Electric connection, Geyser</div><div><br></div><ul><li>-Outdoor :</li></ul><div><span style=\"white-space:pre\"> </span>Elevator, Security guard, Generator, CCTV, WASA connection, Water tank, Guard\'s room</div>', 'https://www.youtube.com/watch?v=IiflEVYY9j8', 'Rent', 'public/media/user_property/1668671014062173.jpg', 'public/media/user_property/1668671026306795.jpg', 'public/media/user_property/1668671123213694.jpg', 3, 'BW-755138', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '04-07-20', 'July', '2020', NULL, NULL, 1, NULL, 'admin', '2020-05-10 15:44:27', '2020-05-10 15:44:27');
INSERT INTO `user_properties` (`id`, `user_id`, `city_id`, `subcity_id`, `name`, `email`, `phone`, `address`, `subcity`, `bedroom`, `bathroom`, `parking`, `type`, `kitchen`, `area`, `price`, `discount_price`, `total_price`, `category`, `floor`, `details`, `video`, `purpose`, `image_one`, `image_two`, `image_three`, `status`, `property_code`, `map_link`, `date`, `month`, `year`, `trend`, `best_rated`, `hot_new`, `service_charge`, `added_by`, `created_at`, `updated_at`) VALUES
(56, NULL, 10, 23, 'Sakil Ahmed', '[email protected]', '01874532626', '3 No. Panchlaish Ward, Mirbari', 'Muktagachha', 4, 3, 1, 'Flat', 1, '1,766 sqft', '15000', '14,000', '14000', 'Sublet', '2nd', '<ol><li>A highly desirable enclosed tunnel entry home offers 3 bedrooms 2 baths on the top floor.</li><li>Spacious master bedroom w/ remote controlled recessed lighting, custom walk-in closet and modern bathroom w/ Hansgrohe fixtures.</li><li>Stylish design and high end finishes w/ refinished hardwood floors, LED recessed lights, skylights, new interior paint and Milgard double pane windows. Living room features a modern electric fireplace and beautiful display shelving. Lower level has two bedrooms, one bath, family room, wet bar and low maintenance yard.</li><li>New systems include copper pipes, electrical, water heater, furnace, roof, drywall and WIFI enabled 1 car garage door. Close to all the shops, restaurants, excellent schools and parks that Sunset has to offer.</li><li>This place is very spacious and constructive. It is just a few minutes away from shopping, dining and local transport.</li><li>We think a lot of crucial facts while we think about getting new home space in a new location. This place is giving you all these benefits along with good privacy and all-time utility supplies.</li></ol><p><br></p><ul><li>- So what are you waiting for come and check this vacant space by yourself? We are quite sure you will find how a valuable place it can be for you.</li><li>- We suggest to make up your mind and steal this deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1668688846111017.jpg', 'public/media/user_property/1668688857311419.jpg', 'public/media/user_property/1668688867735302.jpg', 1, 'BW-850066', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3622.926138328586!2d90.24260311495301!3d24.763721484099708!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x375636e03b04f237%3A0xac59ff13e66444ff!2sMuktagacha%20college!5e0!3m2!1sen!2sbd!4v1605691394131!5m2!1sen!2sbd', '15-05-20', 'May', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-05-15 16:04:02', '2020-05-15 16:04:02'),
(57, NULL, 2, 12, 'Amir Khan', '[email protected]', '01733455325', '39 No. South KP Ward', 'Mirpur', 5, 4, 1, 'Home', 1, '1,216 sqft', '43,700,000', NULL, '43700000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. You will have an apt kitchen area to have your desired cookery essentials.</li><li> A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. </li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Sale', 'public/media/user_property/1668676589450726.jpg', 'public/media/user_property/1668676598505610.jpg', 'public/media/user_property/1668676611329901.jpg', 1, 'BW-544813', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14602.702518325506!2d90.34510367960334!3d23.794562453080236!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c0e96fce29dd%3A0x6ccd9e51aba9e64d!2sMirpur-1%2C%20Dhaka!5e0!3m2!1sen!2sbd!4v1605684727327!5m2!1sen!2sbd', '01-06-20', 'June', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-06-01 20:55:34', '2020-06-01 20:55:34'),
(68, NULL, 1, 1, 'Dipa Akther', '[email protected]', '01863526559', 'Amal Bari, Kadalpur', 'Raozan', 6, 4, 1, 'Flat', 1, '1,366 sqft', '30,000', '28,000', '28500', 'Family', '1th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. </li><li>It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan.</li><li> The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This flat for sale is completed with a great floor plan.</li><li> The balconies would refill the happy time with your family after a hectic day from the daily chores.</li><li> Water, gas & electricity supply is also available for this flat. </li></ol><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li><li>- Call our agent to be the first and book this flat before anyone else!<br></li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1671825762180559.jpg', 'public/media/user_property/1671197236590166.jpg', 'public/media/user_property/1671197236768215.jpg', 1, 'BW-820515', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '05-07-20', 'July', '2020', NULL, 1, NULL, '500', 'admin', '2020-07-03 12:04:42', '2020-07-03 12:04:42'),
(69, NULL, 10, 46, 'Sakil Chowdhury', '[email protected]', '01874532623', '6 No Road, Hazi Para,', 'Bhaluka', 5, 4, 1, 'Flat', 1, '1,566 sqft', '15,000', NULL, '15000', 'Bachelor', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in. </li><li>It is wonderful and comfortable flat for a family to move in. </li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring. </li><li>All the washrooms are finished with the quality and durable fixtures. </li><li>You will have an apt kitchen area to have your desired cookery essentials. </li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area. </li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings. </li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1671408721608435.jpg', 'public/media/user_property/1671408724865157.jpg', 'public/media/user_property/1671408726203545.jpg', 3, 'BW-526702', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3622.153042819879!2d90.01866321495356!3d24.790212484087043!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x375629948a4d9d23%3A0xcff6ad217f442c1a!2sBhaluka%20Bazar!5e0!3m2!1sen!2sbd!4v1605691451746!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, 1, NULL, 'admin', '2020-07-05 20:06:16', '2020-07-05 20:06:16'),
(70, NULL, 1, 1, 'Mohammad Sakil', '[email protected]', '01874532626', 'Pomra, Shantir Hat, Gohira', 'Raozan', 8, 4, 1, 'Flat', 2, '1,216 sqft', '14,000', NULL, '14000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1671409185476895.jpg', 'public/media/user_property/1671409186533717.jpg', 'public/media/user_property/1671409187224884.jpg', 1, 'BW-198827', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-05 20:13:35', '2020-07-05 20:13:35'),
(71, NULL, 1, 2, 'Arman Hossen', '[email protected]', '01733455325', '12 No Sheskh Para R/a', 'Muradpur', 8, 5, 1, 'Flat', 2, '1,716 sqft', '30,000', '27,000', '27000', 'Family', '5th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671409456069837.jpg', 'public/media/user_property/1671409458517271.jpg', 'public/media/user_property/1671409459150455.jpg', 1, 'BW-186648', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-05 20:17:53', '2020-07-05 20:17:53'),
(72, NULL, 1, 7, 'Mohammad Shohel Alam', '[email protected]', '01734455325', '5 No Road, KN R/A', 'Agrabad', 5, 3, 1, 'Flat', 1, '1,516 sqft', '19,000', NULL, '19000', 'Family', '7th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1671409831614151.jpg', 'public/media/user_property/1671409833106141.jpg', 'public/media/user_property/1671409833722036.jpg', 1, 'BW-352123', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7381.58205313981!2d91.80911932473637!3d22.323741691245488!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd8b5353672d5%3A0x7e873374534df3f1!2sAgrabad%20Commercial%20Area%2C%20Chattogram!5e0!3m2!1sen!2sbd!4v1605683841574!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-05 20:23:50', '2020-07-05 20:23:50'),
(73, NULL, 1, 10, 'M. Karim Chy', '[email protected]', '01877746735', 'Rupna Nagar R/A, Colonel Hat', 'A K Khan', 7, 4, 1, 'Flat', 1, '1,316 sqft', '55,000', NULL, '55000', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1671410107420621.jpg', 'public/media/user_property/1671410108415875.jpg', 'public/media/user_property/1671410110079314.jpg', 1, 'BW-926464', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-05 20:28:16', '2020-07-05 20:28:16'),
(74, NULL, 1, 43, 'Kais Kamal', '[email protected]', '01733455325', '4 No Road, GEC Circle', 'GEC', 4, 2, 1, 'Flat', 1, '1,316 sqft', '20,000', NULL, '20000', 'Bachelor', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1671410328890069.jpg', 'public/media/user_property/1671410329587049.jpg', 'public/media/user_property/1671410331971575.jpg', 1, 'BW-647829', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.868349738098!2d91.81792071490693!3d22.358599285293348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd890302b7dc7%3A0x8079b24b40e312d6!2sGEC%20Convention%20Center%20Helipad!5e0!3m2!1sen!2sbd!4v1605684368092!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, 1, NULL, NULL, 'admin', '2020-07-05 20:31:46', '2020-07-05 20:31:46'),
(75, NULL, 1, 45, 'HM Sattar Sumon', '[email protected]', '01877746735', '12 No Noyabazar R/a, Sonapor', 'Noakhali', 8, 5, 1, 'Flat', 2, '1,566 sqft', '20,000', NULL, '20000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Rent', 'public/media/user_property/1671410637864191.jpg', 'public/media/user_property/1671410638806509.jpg', 'public/media/user_property/1671410639037038.jpg', 1, 'BW-145598', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d29408.97274806483!2d91.07860622766228!3d22.871966241874794!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3754a4f60180b351%3A0xaf35df91820c2a37!2sMaijdee!5e0!3m2!1sen!2sbd!4v1605684474073!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, 1, NULL, 'admin', '2020-07-05 20:36:39', '2020-07-05 20:36:39'),
(76, NULL, 1, 7, 'Hasan Sakil Ahmed', '[email protected]', '01874532626', 'Moriom Nagar R/A, Boropul', 'Agrabad', 12, 7, 1, 'Home', 4, '1,516 sqft', '20,400,000', NULL, '20400000', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Sale', 'public/media/user_property/1671411207236767.jpg', 'public/media/user_property/1671411208758732.jpg', 'public/media/user_property/1671411210827717.jpg', 1, 'BW-948328', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7381.58205313981!2d91.80911932473637!3d22.323741691245488!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd8b5353672d5%3A0x7e873374534df3f1!2sAgrabad%20Commercial%20Area%2C%20Chattogram!5e0!3m2!1sen!2sbd!4v1605683841574!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, 1, NULL, 'admin', '2020-07-05 20:45:44', '2020-07-05 20:45:44'),
(77, NULL, 1, 45, 'SM. Bellal Chy', '[email protected]', '01877746735', '39 No. North Pomra Ward,Maijdee', 'Noakhali', 6, 3, 1, 'Home', 1, '1,316 sqft', '10,550,000', NULL, '10550000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1671411551250511.jpg', 'public/media/user_property/1671411553710938.jpg', 'public/media/user_property/1671411555085810.jpg', 1, 'BW-723542', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d29408.97274806483!2d91.07860622766228!3d22.871966241874794!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3754a4f60180b351%3A0xaf35df91820c2a37!2sMaijdee!5e0!3m2!1sen!2sbd!4v1605684474073!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-05 20:51:14', '2020-07-05 20:51:14'),
(78, NULL, 1, 1, 'Hasan Al Sazzad Hossen', '[email protected]', '01733455325', '102.A.D, Kadalpur', 'Raozan', 12, 7, 2, 'Home', 6, '1,816 sqft', '26,550,000', NULL, '26550000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1671411927148884.jpg', 'public/media/user_property/1671411928534604.jpg', 'public/media/user_property/1671411928723130.jpg', 1, 'BW-482773', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '06-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-05 20:57:09', '2020-07-05 20:57:09'),
(79, NULL, 1, 1, 'Jahangir Ahmed', '[email protected]', '01874532626', 'Khan Para, Kadalpur', 'Raozan', 9, 5, 1, 'Home', 2, '1,216 sqft', '5,850,000', NULL, '5850000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1671503056645964.jpg', 'public/media/user_property/1671503061137890.jpg', 'public/media/user_property/1671503061383175.jpg', 1, 'BW-961442', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-06 21:05:40', '2020-07-06 21:05:40'),
(80, NULL, 1, 1, 'Alamgir Kamal', '[email protected]', '01874532626', 'Sultanpur, Monsirghata', 'Raozan', 12, 6, 1, 'Home', 4, '1,566 sqft', '9,557,000', NULL, '9557000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/545523929645427/', 'Sale', 'public/media/user_property/1671503292858100.jpg', 'public/media/user_property/1671503293554439.jpg', 'public/media/user_property/1671503295091485.jpg', 1, 'BW-147026', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-06 21:09:23', '2020-07-06 21:09:23'),
(81, NULL, 1, 1, 'Saber Uddin', '[email protected]', '01877746735', 'Shantir Hat, Pomra', 'Raozan', 14, 8, 2, 'Home', 5, '1,516 sqft', '9,857,000', NULL, '9857000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Sale', 'public/media/user_property/1671503489154282.jpg', 'public/media/user_property/1671503490925478.jpg', 'public/media/user_property/1671503492226447.jpg', 1, 'BW-897056', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-06 21:12:31', '2020-07-06 21:12:31'),
(82, NULL, 1, 2, 'Kais Ibn Kamal', '[email protected]', '01734455325', '9 No Road, Chondrima R/A', 'Muradpur', 14, 8, 1, 'Home', 5, '1,316 sqft', '398,855,000', NULL, '398855000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Sale', 'public/media/user_property/1671503736245547.jpg', 'public/media/user_property/1671503737307182.jpg', 'public/media/user_property/1671503738850775.jpg', 1, 'BW-806892', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-06 21:16:27', '2020-07-06 21:16:27'),
(83, NULL, 1, 10, 'Sadab Khan Alam', '[email protected]', '01733455325', 'Moulobi Bazar, North Khan Para, City Gate', 'A K Khan', 14, 8, 2, 'Home', 5, '1,566 sqft', '378,885,000', NULL, '378885000', 'Family', NULL, '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Sale', 'public/media/user_property/1671504027529114.jpg', 'public/media/user_property/1671504029152281.jpg', 'public/media/user_property/1671504030216549.jpg', 1, 'BW-520772', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-06 21:21:04', '2020-07-06 21:21:04'),
(84, NULL, 1, 1, 'Aslam Uddin', '[email protected]', '01874532626', 'Shekh Para, Pahartoli', 'Raozan', 6, 3, 1, 'Flat', 1, '1,516 sqft', '20,000', '18,000', '18000', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671534390287373.jpg', 'public/media/user_property/1671534394569468.jpg', 'public/media/user_property/1671534395248704.jpg', 1, 'BW-747441', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:23:44', '2020-07-07 05:23:44'),
(85, NULL, 1, 1, 'AKM Sazzad Hossen', '[email protected]', '01733455325', 'CUET, Pahartoli', 'Raozan', 2, 1, 1, 'Flat', 1, '1,216 sqft', '10,000', NULL, '10000', 'Bachelor', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1671534628113793.jpg', 'public/media/user_property/1671534629712571.jpg', 'public/media/user_property/1671534634788553.jpg', 1, 'BW-636802', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:27:31', '2020-07-07 05:27:31'),
(86, NULL, 1, 2, 'HM Sakil Ahmed', '[email protected]', '01874532626', '10 NO Road, Atorar Dipo', 'Muradpur', 5, 3, 1, 'Flat', 1, '1,316 sqft', '15,000', '13,000', '13000', 'Bachelor', '5th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671534859011187.jpg', 'public/media/user_property/1671534859974825.jpg', 'public/media/user_property/1671534860177315.jpg', 1, 'BW-912370', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:31:07', '2020-07-07 05:31:07'),
(87, NULL, 1, 2, 'Mr. Alam Chy', '[email protected]', '01877746735', 'Bayezid, Oxyzen', 'Muradpur', 7, 4, 1, 'Flat', 2, '1,316 sqft', '30,000', '28,000', '28000', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671535031292125.jpg', 'public/media/user_property/1671535032114856.jpg', 'public/media/user_property/1671535034953847.jpg', 1, 'BW-952825', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:33:54', '2020-07-07 05:33:54'),
(88, NULL, 1, 10, 'Md. Monna', '[email protected]', '01874532626', 'City Gate, Colonet Hat', 'A K Khan', 4, 2, 1, 'Flat', 1, '1,216 sqft', '18,000', '16,000', '16000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1671535205311415.jpg', 'public/media/user_property/1671535208109323.jpg', 'public/media/user_property/1671535212312715.jpg', 1, 'BW-936908', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:36:42', '2020-07-07 05:36:42'),
(89, NULL, 1, 10, 'SM. jahed H Hossen', '[email protected]', '01733455325', '102.A.D, Colonel Hat, City Gate', 'A K Khan', 2, 1, 1, 'Flat', 1, '1,216 sqft', '11,000', NULL, '11000', 'Sublet', '7th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul><div><br></div>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1671535369073113.jpg', 'public/media/user_property/1671535371309684.jpg', 'public/media/user_property/1671535375568846.jpg', 1, 'BW-810782', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:39:18', '2020-07-07 05:39:18'),
(90, NULL, 2, 42, 'Mr. Sattar Sumon', '[email protected]', '01877746735', '6 No Road, SR R/A', 'Savar', 4, 3, 2, 'Flat', 2, '1,516 sqft', '19,000', '18,000', '18000', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul><div><br></div>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671535851881144.jpg', 'public/media/user_property/1671535854598872.jpg', 'public/media/user_property/1671535858840078.jpg', 1, 'BW-870256', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3649.0997335824104!2d90.256795814935!3d23.850591984539946!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755ebd3a31fc6e1%3A0xe55aca4d05ef4fa2!2sThai%20Shop%20SAVAR%20NEW%20MARKET%20SAVAR%20DHAKA!5e0!3m2!1sen!2sbd!4v1605684973910!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:47:02', '2020-07-07 05:47:02'),
(91, NULL, 4, 13, 'Arman Ahmed', '[email protected]', '01874532626', '12 No Road, Prosanti R/a,', 'Bagherhat', 6, 3, 1, 'Flat', 2, '1,216 sqft', '22,000', '20,000', '20000', 'Family', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul><div><br></div>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1671536027342994.jpg', 'public/media/user_property/1671536028026895.jpg', 'public/media/user_property/1671536031790932.jpg', 1, 'BW-657014', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d117796.67487327367!2d89.68140895703026!3d22.685604916631824!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39fff43dbdfc0fb3%3A0x9606f07a6d8041e6!2sBagerhat%20Sadar%20Upazila!5e0!3m2!1sen!2sbd!4v1605686008854!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:49:45', '2020-07-07 05:49:45'),
(92, NULL, 5, 22, 'M. Kalim Chy', '[email protected]', '01877746735', '2 No Road, Shanti Nagar R/A', 'Babuganj', 2, 1, 1, 'Flat', 1, '1,566 sqft', '11,000', NULL, '11000', 'Bachelor', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul><div><br></div>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1671536231606370.jpg', 'public/media/user_property/1671536232191296.jpg', 'public/media/user_property/1671536232337690.jpg', 3, 'BW-192366', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3677.5246127927235!2d90.32277171491545!3d22.820072485055967!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37553824e50669c9%3A0x2adcd0012f8c2379!2sBabuganj%20Thana%20Jame%20Mosque!5e0!3m2!1sen!2sbd!4v1605690706210!5m2!1sen!2sbd', '15-11-20', 'November', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 05:52:55', '2020-07-07 05:52:55');
INSERT INTO `user_properties` (`id`, `user_id`, `city_id`, `subcity_id`, `name`, `email`, `phone`, `address`, `subcity`, `bedroom`, `bathroom`, `parking`, `type`, `kitchen`, `area`, `price`, `discount_price`, `total_price`, `category`, `floor`, `details`, `video`, `purpose`, `image_one`, `image_two`, `image_three`, `status`, `property_code`, `map_link`, `date`, `month`, `year`, `trend`, `best_rated`, `hot_new`, `service_charge`, `added_by`, `created_at`, `updated_at`) VALUES
(93, NULL, 6, 33, 'Khorshed Ahmed', '[email protected]', '01874532626', '4 No Road, Shandani R/A', 'Osmani Nagar', 2, 1, 1, 'Flat', 1, '1,316 sqft', '10,000', NULL, '10000', 'Bachelor', '3rd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul><div><br></div>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1671536852891801.jpg', 'public/media/user_property/1671536855258775.jpg', 'public/media/user_property/1671536861376613.jpg', 1, 'BW-654760', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3623.797879719998!2d91.7671556149524!3d24.73381838411366!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x375107f2ddcd5c25%3A0x90a57de0862a48e4!2sOsmaninagar%20Zonal%20Office%2C%20Sylhet%20Palli%20Bidyut%20Samity-1!5e0!3m2!1sen!2sbd!4v1605690763468!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 06:02:57', '2020-07-07 06:02:57'),
(94, NULL, 7, 37, 'Monir Uddin', '[email protected]', '01733455325', '3 No road, Shogonda R/A', 'Lalmai', 6, 3, 1, 'Flat', 1, '1,566 sqft', '22,000', NULL, '22000', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671544814831922.jpg', 'public/media/user_property/1671544816341747.jpg', 'public/media/user_property/1671544816523185.jpg', 1, 'BW-231343', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3660.024773027686!2d91.17595981492747!3d23.459570884733584!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37547f26739b28c1%3A0x7c80529704d0dc59!2sLalmai%20Sanitary%20and%20Tiles!5e0!3m2!1sen!2sbd!4v1605690978143!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 08:09:21', '2020-07-07 08:09:21'),
(95, NULL, 7, 37, 'Monir Uddin', '[email protected]', '01733455325', '3 No road, Shogonda R/A', 'Lalmai', 6, 3, 1, 'Flat', 1, '1,566 sqft', '22,000', NULL, '22000', 'Family', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671544892904216.jpg', 'public/media/user_property/1671544894730870.jpg', 'public/media/user_property/1671544895206039.jpg', 0, 'BW-723078', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3660.024773027686!2d91.17595981492747!3d23.459570884733584!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37547f26739b28c1%3A0x7c80529704d0dc59!2sLalmai%20Sanitary%20and%20Tiles!5e0!3m2!1sen!2sbd!4v1605690978143!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 08:10:37', '2020-07-07 08:10:37'),
(96, NULL, 8, 18, 'Omar Ahmed', '[email protected]', '01874532626', 'Prosanti Abasik, Lichu Bagan', 'Kaunia', 6, 3, 2, 'Flat', 2, '1,216 sqft', '30,000', '27,000', '27000', 'Family', '5th', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>All the washrooms are finished with the quality and durable fixtures.</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><div><br></div><ul><li>- We suggest you make up your mind and steal this deal offered at best deal.</li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671549997033049.jpg', 'public/media/user_property/1671549999129106.jpg', 'public/media/user_property/1671549999677837.jpg', 3, 'BW-661517', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3592.879533946389!2d89.41281081497368!3d25.774542283630886!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x39e2d6147dc6998f%3A0x2b98e3796128178!2sKaunia%20College!5e0!3m2!1sen!2sbd!4v1605691242911!5m2!1sen!2sbd', '19-11-20', 'November', '2020', NULL, NULL, NULL, NULL, 'admin', '2020-07-07 09:31:45', '2020-07-07 09:31:45'),
(97, 2, 10, 47, 'Chowdhyry Kalim Ahmed', '[email protected]', '01874532626', 'Mir Kalim Bari, South Khulshi', 'Kistopur', 6, 3, 1, 'Flat', 1, '1,516 sqft', '28,000', '25,000', '25000', 'Family', '5th', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.\r\n</li><li>It is wonderful and comfortable flat for a family to move in.\r\n</li><li>The respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\n</li><li>All the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>\r\n- We suggest you make up your mind and steal this deal offered at best deal.\r\n </li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1671550837620545.jpg', 'public/media/user_property/1671550838848837.jpg', 'public/media/user_property/1671550840460899.jpg', 1, 'BW-864912', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7246.872516901797!2d90.4112577749219!3d24.746227086431524!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x37564fa79924d393%3A0x10ffc66e32c2743b!2sKristapur%20Madina%20Masjid!5e0!3m2!1sen!2sbd!4v1605691535160!5m2!1sen!2sbd', '07-07-20', 'July', '2020', NULL, NULL, NULL, NULL, NULL, '2020-07-07 09:45:05', '2020-07-07 09:45:05'),
(99, 2, 1, 7, 'Nazim Uddin', '[email protected]', '01833000325', '22 no road, Kalifa Para', 'Agrabad', 5, 3, 1, 'Flat', 1, '1,566 sqft', '30,000', NULL, '30000', 'Family', '5th', 'Considering a suitable lifestyle, this is one of the best places to reside in.\r\nIt is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.\r\nAll the washrooms are finished with the quality and durable fixtures.\r\nYou will have an apt kitchen area to have your desired cookery essentials.\r\nA great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\nThis west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\nHere are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!\r\n\r\n- We suggest you make up your mind and steal this deal offered at best deal.', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1678385590060395.jpg', 'public/media/user_property/1678385590378359.jpg', 'public/media/user_property/1678385592177025.jpg', 4, 'BW-302073', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7381.58205313981!2d91.80911932473637!3d22.323741691245488!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd8b5353672d5%3A0x7e873374534df3f1!2sAgrabad%20Commercial%20Area%2C%20Chattogram!5e0!3m2!1sen!2sbd!4v1605683841574!5m2!1sen!2sbd', '21-09-20', 'September', '2020', NULL, NULL, NULL, NULL, NULL, '2020-09-20 20:20:32', '2020-09-20 20:20:32'),
(100, 2, 1, 7, 'Nazim Uddin', '[email protected]', '01833000325', '22 no road, Rangunia', 'Agrabad', 5, 3, 1, 'Flat', 1, '1,566 sqft', '30,000', NULL, '30000', 'Family', '5th', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>\r\nIt is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\nAll the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>\r\n- We suggest you make up your mind and steal this deal offered at best deal.\r\n </li></ul>', 'https://web.facebook.com/realestateindushanbe/videos/518205912406456/', 'Rent', 'public/media/user_property/1678385654053000.jpg', 'public/media/user_property/1678385654368677.jpg', 'public/media/user_property/1678385656234778.jpg', 0, 'BW-631588', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d7381.58205313981!2d91.80911932473637!3d22.323741691245488!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd8b5353672d5%3A0x7e873374534df3f1!2sAgrabad%20Commercial%20Area%2C%20Chattogram!5e0!3m2!1sen!2sbd!4v1605683841574!5m2!1sen!2sbd', '21-09-20', 'September', '2020', NULL, NULL, NULL, NULL, NULL, '2020-09-20 20:21:33', '2020-09-20 20:21:33'),
(101, 3, 1, 2, 'Ariful Islam', '[email protected]', '01877766677', '8 no road, Onnanna Abasikh', 'Muradpur', 4, 2, 1, 'Flat', 1, '1,516 sqft', '14,000', NULL, '14000', 'Family', '3rd', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.\r\n</li><li>It is a wonderful and comfortable flat for a family to move in.\r\n</li><li>The respective unit welcomes with a great floor plan. The flat has got amazing bedrooms with modish tiled flooring.</li><li>\r\nAll the washrooms are finished with quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, schools, colleges, and bus stops are also located in the nearby area.\r\n</li><li>This west-facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li><span style=\"font-size: 0.875rem;\">We suggest you make up your mind and steal this deal offered at the best deal.</span><br></li></ul>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1683425917102629.jpg', 'public/media/user_property/1683425918313993.jpg', 'public/media/user_property/1683425918725589.jpg', 1, 'BW-348507', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '15-11-20', 'November', '2020', NULL, NULL, NULL, NULL, NULL, '2020-11-15 11:34:22', '2020-11-15 11:34:22'),
(105, 2, 2, 12, 'Nayan Chowdhury', '[email protected]', '01829999019', '4no Bahir Signal, RF Road', 'Mirpur', 2, 1, 1, 'Flat', 1, '1,216 sqft', '10,000', NULL, '10000', 'Bachelor', '5th', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.</li><li>It is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\nAll the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.</li><li>\r\nHere are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>\r\n- We suggest you make up your mind and steal this deal offered at best deal.\r\n </li></ul>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1683618586217394.jpg', 'public/media/user_property/1683618587713051.jpg', 'public/media/user_property/1683618588575634.jpg', 0, 'BW-629850', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d14602.702518325506!2d90.34510367960334!3d23.794562453080236!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c0e96fce29dd%3A0x6ccd9e51aba9e64d!2sMirpur-1%2C%20Dhaka!5e0!3m2!1sen!2sbd!4v1605684727327!5m2!1sen!2sbd', '17-11-20', 'November', '2020', NULL, NULL, NULL, NULL, NULL, '2020-11-17 14:36:47', '2020-11-17 14:36:47'),
(106, 2, 1, 10, 'Ayub Khan', '[email protected]', '01844432626', '8 no road, Prosanti Abasik', 'A K Khan', 2, 1, 0, 'Flat', 1, '1,216 sqft', '7,000', NULL, '7000', 'Bachelor', '5th', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.\r\n</li><li>It is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\nAll the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>We suggest you make up your mind and steal this deal offered at best deal.\r\n </li></ul>', 'https://www.youtube.com/watch?v=70n8F8q686c', 'Rent', 'public/media/user_property/1683620810199377.jpg', 'public/media/user_property/1683620811795818.jpg', 'public/media/user_property/1683620812030422.jpg', 0, 'BW-172525', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.5951356996193!2d91.77559951490711!3d22.368911085287937!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd90a2c5c4ca5%3A0xf89baf1b9b15d610!2sColonel%20Hat%20Foot%20Overbridge%2C%20Chittagong!5e0!3m2!1sen!2sbd!4v1605684022960!5m2!1sen!2sbd', '17-11-20', 'November', '2020', NULL, NULL, NULL, NULL, NULL, '2020-11-17 15:12:07', '2020-11-17 15:12:07'),
(107, 2, 1, 2, 'Sazzad Hossen', '[email protected]', '+441733455325', 'Modina Tower, 8 no road, Prosanti Abasik', 'Muradpur', 5, 2, 1, 'Flat', 1, '1,316 sqft', '20,000', NULL, '20000', 'Sublet', '2nd', '<ol><li>Considering a suitable lifestyle, this is one of the best places to reside in.\r\n</li><li>It is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\nAll the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>\r\n- We suggest you make up your mind and steal this deal offered at best deal.\r\n </li></ul>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1683621203011740.jpg', 'public/media/user_property/1683621203677696.jpg', 'public/media/user_property/1683621203993756.jpg', 0, 'BW-892638', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.2586060221606!2d91.82755051490739!3d22.38160638528135!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd87849fc9f5d%3A0xd5a36fd3597c0ee0!2sJanata%20Bank%20Limited%2C%20Aturar%20Depo%20Hashem%20Bazar!5e0!3m2!1sen!2sbd!4v1605683175599!5m2!1sen!2sbd', '17-11-20', 'November', '2020', NULL, NULL, NULL, NULL, NULL, '2020-11-17 15:18:21', '2020-11-17 15:18:21'),
(108, 2, 1, 1, 'Mir Kamrul Hasan', '[email protected]', '+8801833455325', '5 no road, Onnanna Abasikh', 'Raozan', 4, 2, 1, 'Flat', 1, '1,516 sqft', '20,000', NULL, '20000', 'Family', '3rd', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.\r\n</li><li>It is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\n</li><li>All the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li> We suggest you make up your mind and steal this deal offered at best deal.\r\n </li></ul>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1683622977014996.jpg', 'public/media/user_property/1683622978417901.jpg', 'public/media/user_property/1683622978610734.jpg', 0, 'BW-488993', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '17-11-20', 'November', '2020', NULL, NULL, NULL, NULL, NULL, '2020-11-17 15:46:34', '2020-11-17 15:46:34'),
(111, 2, 1, 43, 'MD Sazzad Hossen', '[email protected]', '+433673455325', '21 no road, Prosanti Nogor', 'GEC', 5, 2, 1, 'Flat', 1, '1,566 sqft', '30,000', NULL, '30000', 'Family', '5th', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.\r\n</li><li>It is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\nAll the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more.</li></ol><p> -<span style=\"font-size: 0.875rem;\">We suggest you make up your mind and steal this deal offered at best deal.</span><br></p>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1683681243836707.jpg', 'public/media/user_property/1683681247807591.jpg', 'public/media/user_property/1683681249222824.jpg', 0, 'BW-443948', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3689.868349738098!2d91.81792071490693!3d22.358599285293348!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30acd890302b7dc7%3A0x8079b24b40e312d6!2sGEC%20Convention%20Center%20Helipad!5e0!3m2!1sen!2sbd!4v1605684368092!5m2!1sen!2sbd', '18-11-20', 'November', '2020', NULL, NULL, NULL, NULL, NULL, '2020-11-18 07:12:46', '2020-11-18 07:12:46'),
(112, 2, 1, 1, 'Arfan Sowrab', '[email protected]', '01733455325', '4no Road, Shanti Nagar,', 'Raozan', 3, 1, 1, 'Flat', 1, '1,316 sqft', '14,000', NULL, '14000', 'Family', '5th', '<ol><li> Considering a suitable lifestyle, this is one of the best places to reside in.\r\n</li><li>It is wonderful and comfortable flat for a family to move in.\r\nThe respective unit welcomes with a great floor plan. </li><li>The flat has got amazing bedrooms with modish tiled flooring.\r\nAll the washrooms are finished with the quality and durable fixtures.\r\n</li><li>You will have an apt kitchen area to have your desired cookery essentials.\r\n</li><li>A great number of groceries, school, colleges and bus stops are also located in the nearby area.\r\n</li><li>This west facing lovely apartment includes 3 large bedrooms and 2 Washrooms With Imported Fittings.\r\n</li><li>Here are just a few of its wonderful features: Balcony, 24/7 security service & water, gas available, Tiles Flooring, and so much more!</li></ol><ul><li>\r\n- We suggest you make up your mind and steal this deal offered at best deal.\r\n </li></ul>', 'https://www.youtube.com/watch?v=IifLEVYY9j8', 'Rent', 'public/media/user_property/1683760034947932.jpg', 'public/media/user_property/1683760037568199.jpg', 'public/media/user_property/1683760037666989.jpg', 3, 'BW-390842', 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3686.1786698861097!2d91.94783151490955!3d22.49747868522149!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x30ad2e6266c7904b%3A0x4a2f9fcd6f9c0cd9!2sKadalpur%20Health%20Complex!5e0!3m2!1sen!2sbd!4v1605681031368!5m2!1sen!2sbd', '19-11-20', 'November', '2020', NULL, NULL, NULL, NULL, NULL, '2020-11-19 04:05:03', '2020-11-19 04:05:03');
-- --------------------------------------------------------
--
-- Table structure for table `wishlists`
--
CREATE TABLE `wishlists` (
`id` bigint(20) UNSIGNED NOT NULL,
`user_id` int(11) NOT NULL,
`property_id` int(11) NOT NULL,
`created_at` timestamp NULL DEFAULT current_timestamp(),
`updated_at` timestamp NULL DEFAULT current_timestamp()
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `wishlists`
--
INSERT INTO `wishlists` (`id`, `user_id`, `property_id`, `created_at`, `updated_at`) VALUES
(8, 3, 16, '2020-05-29 06:19:43', '2020-05-29 06:19:43'),
(9, 3, 11, '2020-05-29 15:04:33', '2020-05-29 15:04:33'),
(10, 3, 33, '2020-05-29 19:59:53', '2020-05-29 19:59:53'),
(11, 3, 25, '2020-05-29 20:05:50', '2020-05-29 20:05:50'),
(12, 3, 3, '2020-05-29 20:06:09', '2020-05-29 20:06:09'),
(13, 3, 40, '2020-05-29 21:11:46', '2020-05-29 21:11:46'),
(14, 3, 8, '2020-05-29 21:25:21', '2020-05-29 21:25:21'),
(15, 3, 14, '2020-05-29 21:25:35', '2020-05-29 21:25:35'),
(16, 3, 29, '2020-05-29 21:33:51', '2020-05-29 21:33:51'),
(17, 3, 10, '2020-05-29 21:34:09', '2020-05-29 21:34:09'),
(18, 3, 39, '2020-05-29 21:34:45', '2020-05-29 21:34:45'),
(19, 2, 52, '2020-06-03 09:23:23', '2020-06-03 09:23:23'),
(20, 2, 55, '2020-06-03 10:14:16', '2020-06-03 10:14:16'),
(21, 2, 41, '2020-06-04 20:48:47', '2020-06-04 20:48:47'),
(22, 2, 56, '2020-06-05 21:21:43', '2020-06-05 21:21:43'),
(23, 2, 3, '2020-07-05 16:16:59', '2020-07-05 16:16:59'),
(24, 2, 6, '2020-07-05 16:58:52', '2020-07-05 16:58:52'),
(25, 2, 11, '2020-07-05 19:00:54', '2020-07-05 19:00:54'),
(27, 2, 93, '2020-07-10 19:53:44', '2020-07-10 19:53:44'),
(28, 2, 75, '2020-07-10 20:03:55', '2020-07-10 20:03:55'),
(29, 2, 7, '2020-07-12 12:48:31', '2020-07-12 12:48:31'),
(30, 4, 94, '2020-07-13 12:17:05', '2020-07-13 12:17:05');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admins`
--
ALTER TABLE `admins`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `admins_email_unique` (`email`);
--
-- Indexes for table `cities`
--
ALTER TABLE `cities`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `contacts`
--
ALTER TABLE `contacts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `coupons`
--
ALTER TABLE `coupons`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `interested_properties`
--
ALTER TABLE `interested_properties`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `migrations`
--
ALTER TABLE `migrations`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `newsletters`
--
ALTER TABLE `newsletters`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `orders`
--
ALTER TABLE `orders`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD KEY `password_resets_email_index` (`email`);
--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `post_category`
--
ALTER TABLE `post_category`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `sitesetting`
--
ALTER TABLE `sitesetting`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `subcities`
--
ALTER TABLE `subcities`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `users_email_unique` (`email`);
--
-- Indexes for table `user_properties`
--
ALTER TABLE `user_properties`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `wishlists`
--
ALTER TABLE `wishlists`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admins`
--
ALTER TABLE `admins`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5;
--
-- AUTO_INCREMENT for table `cities`
--
ALTER TABLE `cities`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `contacts`
--
ALTER TABLE `contacts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=14;
--
-- AUTO_INCREMENT for table `coupons`
--
ALTER TABLE `coupons`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `failed_jobs`
--
ALTER TABLE `failed_jobs`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `interested_properties`
--
ALTER TABLE `interested_properties`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=68;
--
-- AUTO_INCREMENT for table `migrations`
--
ALTER TABLE `migrations`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=18;
--
-- AUTO_INCREMENT for table `newsletters`
--
ALTER TABLE `newsletters`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4;
--
-- AUTO_INCREMENT for table `orders`
--
ALTER TABLE `orders`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=16;
--
-- AUTO_INCREMENT for table `posts`
--
ALTER TABLE `posts`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `post_category`
--
ALTER TABLE `post_category`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
--
-- AUTO_INCREMENT for table `sitesetting`
--
ALTER TABLE `sitesetting`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `subcities`
--
ALTER TABLE `subcities`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=48;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
--
-- AUTO_INCREMENT for table `user_properties`
--
ALTER TABLE `user_properties`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=113;
--
-- AUTO_INCREMENT for table `wishlists`
--
ALTER TABLE `wishlists`
MODIFY `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=34;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;