A humanitarian platform to document and manage data related to detainees, missing persons, unidentified individuals, and national initiatives during the war in Sudan.
Live Aseer Platform
- ✅ Detainee management module with photos , details, and status
- ✅ Missing persons management module with photos , details, and status
- ❌ Stolen cars management module with photos , details, and status
- ❌ national initiatives management module , listing , how to donate , etc
- ✅ Admin dashboard with permissions (Spatie Permissions)
- ✅ Export to PDF and Excel
- ✅ Media handling (logos, backgrounds, etc.)
- ✅ Fully Arabic interface
- ✅ Auto & Smart Seo
- ✅ Optimized Notifications With Images
- ✅ Smart Alerts
- ✅ Auto Js Validations
- ✅ Front End Alert
- ✅ Nice Image Viewing FancyBox
- ✅ Drag And drop Feature
- ✅ Fully Arabic 😀
- ✅ Smart Editor With Upload Images
- ✅ Select from Already uploaded Files
- ✅ Fully Profile System With Avatars ( Can Resize Avatar )
- ✅ Fully Responsive
- ✅ Internally Getting Notifications Out Of The Box
- ✅ FontAwesome PRO 💥 + ResponsiveFonts + Noto Sans Arabic fonts Included
- ✅ Robots.txt , SiteMapGenerator , manifest.json
- ✅ General Statistics On Home Page ( Traffic , New Users , Top Pages , Top Browsers , Top Devices , Top OSs , Top Ips , Top Users , and so on ... )
- ✅ basic pages ( contact , articles , privacy , terms , about , categories , redirections )
- ✅ You can Create Menus With Links ( can change order by Drag And drop )
- ✅ Ability to Create custom pages
- ✅ Smart Error Listeners
- ✅ Smart Traffic tracker
- ✅ RateLimit Plugin
- ✅ Custom 404 Page
- ✅ Nice Login , Register and Confirm Email Pages
- ✅ Most Common Settings
- ✅ Ready to integrate CloudFlare Firewall
- ✅ Smart Logging System
If you're setting up the Aseer Platform on macOS, follow these steps to install the required tools:
brew install php composer mysql php-imagick
pecl install imagick
- create .env file with SQLite configuration (Update the .env file with appropriate connection settings):
cp .env.example .env and
- Create SQLite database file
touch database/database.sqlite
- Generate application key (if not already set) and storage symlink:
php artisan key:generate
php artisan storage:link
- Run database migrations and seed the database
php artisan migrate:fresh
php artisan db:seed
- Start the development server
php artisan serve
- Start MySQL
brew services start mysql
- Configure .env for MySQL - Update the .env file with appropriate connection settings:
cp .env.example .env and
- Create the database
mysql -u root -p -e "CREATE DATABASE aseer CHARACTER SET utf8mb4 COLLATE utf8mb4_unicode_ci;"
#dont forget to install
sudo apt-get install php-imagick
composer install
# copy .env.example to .env
cp .env.example .env
# generate security key , link storage file
php artisan key:generate
php artisan storage:link
# after connect your database via .env file
php artisan migrate:fresh
php artisan db:seed
# don't forget to start queuing and run schedule on the background
php artisan queue:work
php artisan schedule:work
php artisan menu:update-links
login page : <http://127.0.0.1:8000/login>
email : admin@admin.com
password : password
@yield('styles')
@yield('content')
@yield('after-body')
@yield('scripts')
// docs : https://github.com/mckenziearts/laravel-notify
notify()->info('content','title');
notify()->success('content','title');
notify()->error('content','title');
// docs : https://github.com/CodeSeven/toastr
*****
You have To put alert in scripts section
// @yield('scripts')
*****
// Display a warning toast, with no title
toastr.warning('My name is Inigo Montoya. You killed my father, prepare to die!')
// Display a success toast, with a title
toastr.success('Have fun storming the castle!', 'Miracle Max Says')
// Display an error toast, with a title
toastr.error('I do not think that word means what you think it means.', 'Inconceivable!')
// Immediately remove current toasts without using animation
toastr.remove()
// Remove current toasts using animation
toastr.clear()
// Override global options
toastr.success('We do have the Kapua suite available.', 'Turtle Bay Resort', {timeOut: 5000})
(new \MainHelper)->notify_user([
'user_id'=>2,
'message'=>"محتوى الإشعار" ,
'url'=>"http://example.com",
'methods'=>['database','mail']
]);
<textarea type="text" name="description" required minlength="3" maxlength="10000" class="form-control editor with-file-explorer" ></textarea>
<textarea type="text" name="description" required minlength="3" maxlength="10000" class="form-control editor" ></textarea>
/* Just Add this Tag To image */
<img src="" data-fancybox />
/* Every image inside this class "data-fancybox" will be converted to fancy */
<div class="fancybox">
<img src="" />
</div>
This project uses automated PHP code formatting to maintain consistent code style across the codebase:
- EditorConfig: Basic editor settings are defined in
.editorconfig
- StyleCI: PHP code style is enforced via StyleCI using the Laravel preset
- PHP CS Fixer: Local formatting is handled via PHP CS Fixer
- Install the EditorConfig extension
- Install the PHP CS Fixer extension
- VSCode settings are already configured in
.vscode/settings.json
- EditorConfig is supported natively
- For PHP CS Fixer:
- Go to Settings > Tools > External Tools
- Add PHP CS Fixer with Program:
$ProjectFileDir$/vendor/bin/php-cs-fixer
and Arguments:fix "$FileDir$/$FileName$"
- Configure File Watchers to run PHP CS Fixer on save
All formatting configurations are committed to the repository and will be automatically applied when following the setup instructions.
The Laravel framework is open-sourced software licensed under the MIT license.