沵迆平原,南驰苍梧涨海,北走紫塞雁门。柂以漕渠,轴以昆岗。重关复江之隩,四会五达之庄。当昔全盛之时,车挂轊,人驾肩。廛闬扑地,歌吹沸天。孳货盐田,铲利铜山,才力雄富,士马精妍。故能侈秦法,佚周令,划崇墉,刳濬洫,图修世以休命。是以板筑雉堞之殷,井干烽橹之勤,格高五岳,袤广三坟,崪若断岸,矗似长云。制磁石以御冲,糊赪壤以飞文。观基扃之固护,将万祀而一君。出入三代,五百余载,竟瓜剖而豆分。泽葵依井,荒葛罥涂。坛罗虺蜮,阶斗麕鼯。木魅山鬼,野鼠城狐,风嗥雨啸,昏见晨趋。饥鹰厉吻,寒鸱吓雏。伏虣藏虎,乳血飡肤。崩榛塞路,峥嵘古馗。白杨早落,寒草前衰。稜稜霜气,蔌蔌风威。孤篷自振,惊沙坐飞。灌莽杳而无际,丛薄纷其相依。通池既已夷,峻隅又以颓。直视千里外,唯见起黄埃。凝思寂听,心伤已摧。若夫藻扃黼帐,歌堂舞阁之基;璇渊碧树,弋林钓渚之馆;吴蔡齐秦之声,鱼龙爵马之玩;皆薰歇烬灭,光沉响绝。东都妙姬,南国佳人,蕙心纨质,玉貌绛唇,莫不埋魂幽石,委骨穷尘。岂忆同辇之愉乐,离宫之苦辛哉?天道如何,吞恨者多。抽琴命操,为芜城之歌。歌曰:“边风急兮城上寒,井径灭兮丘陇残。千龄兮万代,共尽兮何言。
Filer
Sendar Dokka
Kreatar Dokka
Buildar Foldar
Buildar
Modifar: lfm.php
<?php
/*
|--------------------------------------------------------------------------
| Documentation for this config :
|--------------------------------------------------------------------------
| online => http://unisharp.github.io/laravel-filemanager/config
| offline => vendor/unisharp/laravel-filemanager/docs/config.md
*/
return [
/*
|--------------------------------------------------------------------------
| Routing
|--------------------------------------------------------------------------
*/
'use_package_routes' => true,
/*
|--------------------------------------------------------------------------
| Shared folder / Private folder
|--------------------------------------------------------------------------
|
| If both options are set to false, then shared folder will be activated.
|
*/
'allow_private_folder' => true,
// Flexible way to customize client folders accessibility
// If you want to customize client folders, publish tag="lfm_handler"
// Then you can rewrite userField function in App\Handler\ConfigHandler class
// And set 'user_field' to App\Handler\ConfigHandler::class
// Ex: The private folder of user will be named as the user id.
'private_folder_name' => UniSharp\LaravelFilemanager\Handlers\ConfigHandler::class,
'allow_shared_folder' => false,
'shared_folder_name' => 'shares',
'max_image_size' => 2097152,
'max_file_size' => 2097152,
/*
|--------------------------------------------------------------------------
| Folder Names
|--------------------------------------------------------------------------
*/
'folder_categories' => [
'file' => [
'folder_name' => 'files',
'startup_view' => 'list',
'max_size' => 2097152, // size in KB
'thumb' => true,
'thumb_width' => 80,
'thumb_height' => 80,
'valid_mime' => [
'application/pdf',
'application/msword',
'application/vnd.openxmlformats-officedocument.wordprocessingml.document',
'application/vnd.ms-powerpoint',
'application/vnd.openxmlformats-officedocument.presentationml.presentation',
'image/jpeg',
'image/jpg',
'image/png',
'application/x-rar-compressed',
'application/zip',
'video/mp4',
'video/x-matroska',
'video/x-msvideo',
'audio/mp3',
'application/font-woff',
'application/font-woff2',
'font/ttf',
'application/vnd.ms-fontobject',
'image/svg+xml',
'application/json',
'text/plain',
// add support of more file formats
],
],
'image' => [
'folder_name' => 'photos',
'startup_view' => 'list',
'max_size' => 5000, // size in KB
'thumb' => true,
'thumb_width' => 80,
'thumb_height' => 80,
'valid_mime' => [
'image/jpeg',
'image/jpg',
'image/png',
'image/gif',
],
],
],
/*
|--------------------------------------------------------------------------
| Pagination
|--------------------------------------------------------------------------
*/
'paginator' => [
'perPage' => 30,
],
/*
|--------------------------------------------------------------------------
| Upload / Validation
|--------------------------------------------------------------------------
*/
'base_directory' => 'uploads/store',
'files_url' => 'uploads/store',
'disk' => 'public',
'rename_file' => false,
'rename_duplicates' => false,
'alphanumeric_filename' => false,
'alphanumeric_directory' => false,
'should_validate_size' => true,
'should_validate_mime' => true,
// behavior on files with identical name
// setting it to true cause old file replace with new one
// setting it to false show `error-file-exist` error and stop upload
'over_write_on_duplicate' => false,
// mimetypes of executables to prevent from uploading
'disallowed_mimetypes' => ['text/x-php', 'text/html'],
// extensions of executables to prevent from uploading
'disallowed_extensions' => ['php', 'html', 'js'],
// Item Columns
'item_columns' => ['name', 'url', 'time', 'icon', 'is_file', 'is_image', 'thumb_url'],
/*
|--------------------------------------------------------------------------
| Thumbnail
|--------------------------------------------------------------------------
*/
// If true, image thumbnails would be created during upload
'should_create_thumbnails' => true,
'thumb_folder_name' => 'thumbs',
// Create thumbnails automatically only for listed types.
'raster_mimetypes' => [
'image/jpeg',
'image/pjpeg',
'image/png',
],
'thumb_img_width' => 200, // px
'thumb_img_height' => 200, // px
/*
|--------------------------------------------------------------------------
| File Extension Information
|--------------------------------------------------------------------------
*/
'file_type_array' => [
'pdf' => 'Adobe Acrobat',
'doc' => 'Microsoft Word',
'docx' => 'Microsoft Word',
'xls' => 'Microsoft Excel',
'xlsx' => 'Microsoft Excel',
'zip' => 'Archive',
'gif' => 'GIF Image',
'jpg' => 'JPEG Image',
'jpeg' => 'JPEG Image',
'png' => 'PNG Image',
'ppt' => 'Microsoft PowerPoint',
'pptx' => 'Microsoft PowerPoint',
],
/*
|--------------------------------------------------------------------------
| php.ini override
|--------------------------------------------------------------------------
|
| These values override your php.ini settings before uploading files
| Set these to false to ingnore and apply your php.ini settings
|
| Please note that the 'upload_max_filesize' & 'post_max_size'
| directives are not supported.
*/
'php_ini_overrides' => [
'memory_limit' => '256M',
],
];
Savka
Namka
Sizka
Modka
Timka
Aktionz
a€”
0755
Jun 02 08:29
Deletar
Shiftar
[FILE] app.php
6,709 B
0644
Sep 18 16:04
[FILE] auth.php
4,295 B
0644
Aug 13 22:33
[FILE] broadcasting.php
2,147 B
0644
Aug 13 22:33
[FILE] cache.php
3,337 B
0644
Aug 13 22:33
[FILE] cart.php
2,135 B
0644
Aug 13 22:33
[FILE] cloud-storage-region.php
553 B
0644
Sep 18 16:04
[FILE] cors.php
846 B
0644
Aug 13 22:33
[FILE] course.php
640 B
0644
Sep 18 16:04
[FILE] database.php
5,274 B
0644
Aug 13 22:33
[FILE] debugbar.php
11,697 B
0644
Aug 13 22:33
[FILE] filesystems.php
4,103 B
0644
Sep 18 16:04
[FILE] hashing.php
1,624 B
0644
Aug 13 22:33
[FILE] image-optimizer.php
2,310 B
0644
Aug 13 22:33
[FILE] index.php
0 B
0644
Jun 02 08:28
[FILE] lfm.php
6,612 B
0644
Aug 25 16:11
[FILE] logging.php
4,173 B
0644
Aug 13 22:33
[FILE] mail.php
3,856 B
0644
Aug 13 22:33
[FILE] modules.php
11,123 B
0644
Aug 13 22:33
[FILE] paypal.php
1,116 B
0644
Aug 13 22:33
[FILE] permission.php
6,511 B
0644
Aug 13 22:33
[FILE] purifier.php
4,511 B
0644
Aug 21 14:05
[FILE] queue.php
3,447 B
0644
Aug 13 22:33
[FILE] sanctum.php
2,963 B
0644
Aug 13 22:33
[FILE] services.php
979 B
0644
Aug 13 22:33
[FILE] session.php
7,029 B
0644
Aug 13 22:33
[FILE] view.php
1,053 B
0644
Aug 13 22:33
Medical Care Training & Certification || oceanmavericksmaritime
15 Feb, 2025
by vijay
1 Min Read
0 Comments
Medical Care Training & Certification
Medical emergencies at sea require specialized skills to provide immediate and effective care. Medical Care Training in Tamil Nadu equips seafarers, offshore workers, and maritime professionals with essential first aid, trauma management, and emergency response skills needed in remote environments.
This IMO STCW-compliant course covers advanced medical procedures, patient assessment, life-saving techniques, medication administration, wound care, and evacuation procedures . It is a mandatory certification for designated ship personnel responsible for medical care onboard.
By obtaining the Medical Care Certification , professionals enhance their ability to handle health emergencies and improve safety standards in maritime and offshore workplaces. Enroll today to ensure compliance with industry regulations.