Skip to content

Latest commit

 

History

History
206 lines (167 loc) · 7.65 KB

README.md

File metadata and controls

206 lines (167 loc) · 7.65 KB

مزايا لوحة التحكم

  • ✅ مهيئة للسيو بشكل تلقائي وذكي
  • ✅ جاهزة لعرض اشعارات مع صور
  • ✅ عرض التنبيهات بشكل لطيف
  • ✅ عرض الأخطاء بشكل لحظي وتلقائي
  • ✅ طريقة لعرض الصور باحترافية
  • ✅ تدعم السحب والافلات
  • ✅ الاشعارات في الوقت الفعلي
  • ✅ أيقونات مدفوعة بشكل مجاني
  • ✅ أفضل وأجمل الخطوط العربية
  • ✅ اعدادات Robots جاهزة
  • ✅ منشئ SiteMap تلقائي
  • ✅ جاهزة للتحويل إلى تطبيق هاتف
  • ✅ جميع الصفحات الأساسية وأكثر
  • ✅ احصائيات رائعة في لوحة التحكم
  • ✅ امكانية انشاء قوائم وتحديد أماكنها
  • ✅ امكانية ترتيب الروابط داخل القوائم
  • ✅ امكانية انشاء صفحات مخصصة
  • ✅ نظام اعلانات جاهز
  • ✅ مدونة متكاملة أقسام،مقالات ..
  • ✅ نظام تحويل الروابط
  • ✅ عربية بالكامل !
  • ✅ محرر جميل مع امكانية رفع صور
  • ✅ نظام مستخدمين ولهم صور
  • ✅ متجاوبة بالكامل
  • ✅ تستخدم آخر اصدار Laravel
  • ✅ تستخدم آخر اصدار Bootstrap
  • ✅ الاشعارات في الوقت الفعلي
  • ✅ راصد الأخطاء الذكي
  • ✅ نظام تتبع شامل
  • ✅ اضافة حدود الزيارات لزيادة الحماية
  • ✅ صفحات 404 مخصصة
  • ✅ صفحات الدخول والتسجيل وغيرها
  • ✅ نظام اعدادات الموقع
  • ✅ جاهزة للدمج مع كلاود فلاير
  • ✅ نظام متابعة ذكي
  • ✅ نظام صلاحيات متقدم
  • ✅ مرفق نماذج لصناعة الصفحات
  • ✅ نظام التذاكر للتواصل معنا
  • ✅ نظام Plugins جاهز لاضافة المزيد
  • ✅ المزيد

Screenshots

screenshots/25.jpg screenshots/18.jpg screenshots/19.jpg screenshots/20.jpg screenshots/24.jpg screenshots/6.jpg screenshots/7.jpg screenshots/8.jpg screenshots/9.jpg screenshots/10.jpg screenshots/11.jpg screenshots/12.jpg screenshots/13.jpg screenshots/14.jpg screenshots/15.jpg screenshots/16.jpg screenshots/17.jpg

How to setup

#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

# dont forget to start queuing and run schedule on the background 
php artisan queue:work && php artisan schedule:run 

Credentials

login page : <http://127.0.0.1:8000/login>
email : admin@admin.com
password : password

Main Yield Sections

@yield('styles')
@yield('content')
@yield('after-body')
@yield('scripts')

Notifications On Response

// docs : https://github.com/mckenziearts/laravel-notify

notify()->info('content','title');

notify()->success('content','title');

notify()->error('content','title');

Notifications On Frontend

// 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})

Notification to [ 'dashboard' , 'email' ]

(new \MainHelper)->notify_user([
      'user_id'=>2,
      'message'=>"محتوى الإشعار" ,
      'url'=>"http://example.com",
			'methods'=>['database','mail']
]);

Editor with and without file-explorer

<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>

Fancybox

/* 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>

License

The Laravel framework is open-sourced software licensed under the MIT license.