Giter Club home page Giter Club logo

dashboard's Introduction

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

  • ✅ مهيئة للسيو بشكل تلقائي وذكي
  • ✅ جاهزة لعرض اشعارات مع صور
  • ✅ عرض التنبيهات بشكل لطيف
  • ✅ عرض الأخطاء بشكل لحظي وتلقائي
  • ✅ طريقة لعرض الصور باحترافية
  • ✅ تدعم السحب والافلات
  • ✅ الاشعارات في الوقت الفعلي
  • ✅ أيقونات مدفوعة بشكل مجاني
  • ✅ أفضل وأجمل الخطوط العربية
  • ✅ اعدادات 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 : [email protected]
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>

Upload Files

#Upload File
$this->store_file([
    'source'=>$request->file,
    'validation'=>"image",
    'path_to_save'=>'/uploads/users/',
    'type'=>'AVATAR', 
    'user_id'=>\Auth::user()->id,
    'resize'=>[500,3000],
    'small_path'=>'small/',
    'visibility'=>'PUBLIC',
    'file_system_type'=>env('FILESYSTEM_DRIVER'),
    'watermark'=>true,
    'optimize'=>true,
])['filename'];

#Use File
$this->use_hub_file('file_name','type_id','user_id');
#use multiple files
$uploaded_files=json_decode($request["fileuploader-list-attachment"]);
$attachments=[];foreach($uploaded_files as $uploaded_file)array_push($attachments, $uploaded_file->file);
foreach($attachments as $attachment)
     $this->use_hub_file($attachment, $item->id, auth()->user()->id);

#Remove File
$this->remove_hub_file('file_name');

Drag And Drop Feature

# You have to use this code inside @section('scripts')

#for single upload
@include('admin.templates.dropzone',[
		'selector'=>'#file-uploader-nafezly-main',
		'url'=> route('admin.upload.file'),
		'method'=>'POST',
		'remove_url'=>route('admin.upload.remove-file'),
		'remove_method'=>'POST',
		'enable_selector_after_upload'=>'#submitEvaluation',
		'max_files'=>1,
		'max_file_size'=>'50',
		'accepted_files'=>"['image/*']"
])

#for multiplue uploads
@include('admin.templates.dropzone',[
		'selector'=>'#file-uploader-nafezly-second',
		'url'=> route('admin.upload.file'),
		'method'=>'POST',
		'remove_url'=>route('admin.upload.remove-file'),
		'remove_method'=>'POST',
		'enable_selector_after_upload'=>'#submitEvaluation',
		'max_files'=>100,
		'max_file_size'=>'50',
		'accepted_files'=>"['image/*']"
])
/* You have To import this code inside */

/*for single upload*/
<div class="col-12  px-0 mt-2 px-0">
    <div class="col-12 mt-2" style="overflow: hidden">
        <div class="col-12 px-0" id="file-uploader-nafezly-main">
            <input type="hidden" disabled class="file-uploader-uploaded-files">
				    <input name="attachment" type="file" multiple class="file-uploader-files" data-fileuploader-files="" style="opacity: 0" />
							<!--
							# for rendering old uploaded files 
							<input name="attachment" type="file" multiple class="file-uploader-files" data-fileuploader-files='@include('site-templates.uploaded-files-array',['files'=>$item->uploaded_files()])' style="opacity: 0" />
							# uploaded_files => is a laravel collection 
							-->
        </div> 
    </div>
 </div>

/*for multiple uploads*/
<div class="col-12  px-0 mt-2 px-0">
    <div class="col-12 mt-2" style="overflow: hidden">
        <div class="col-12 px-0" id="file-uploader-nafezly-second">
           <input type="hidden" disabled class="file-uploader-uploaded-files">
				   <input name="attachment" type="file" multiple class="file-uploader-files" data-fileuploader-files="" style="opacity: 0" />
						<!--
							# for rendering old uploaded files 
							<input name="attachment" type="file" multiple class="file-uploader-files" data-fileuploader-files='@include('site-templates.uploaded-files-array',['files'=>$item->uploaded_files()])' style="opacity: 0" />
							# uploaded_files => is a laravel collection 
							-->
        </div>
    </div>
 </div>

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>

Configrations .env

FILESYSTEM_DRIVER=local
STORAGE_BASE=/storage
STORAGE_URL="${STORAGE_BASE}"

DEFAULT_IMAGE="${APP_URL}/images/default/image.jpg"
DEFAULT_IMAGE_FAVICON="${APP_URL}/images/default/favicon.png"
DEFAULT_IMAGE_AVATAR="${APP_URL}/images/default/avatar.png"
DEFAULT_IMAGE_LOGO="${APP_URL}/images/default/logo.png"
DEFAULT_IMAGE_WIDELOGO="${APP_URL}/images/default/wide-logo.png"
DEFAULT_IMAGE_COVER="${APP_URL}/images/default/cover.png"
DEFAULT_IMAGE_NOTIFICATION="${APP_URL}/images/default/notification.png"

DEFAULT_EMAIL=admin@admin.com
DEFAULT_PASSWORD=password

Validate Form

/* just add this id  to form like this */
<form id="validate-form"></form>

/*or add this code to the end of the page */

<form id="custom-validation"></form>
@section('content')
<script type="text/javascript">
	$("#custom-validation").validate();
</script>
@endsection

Controlling Accessibility To files Viewer

dashboard's People

Contributors

almandeel avatar amrkhaleds avatar hazem7575 avatar hrr2000 avatar khaliljayab avatar peter-tharwat avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

dashboard's Issues

An issue during installing process

Illuminate\Database\QueryException

SQLSTATE[42S02]: Base table or view not found: 1146 Table 'dashboard.settings' doesn't exist (SQL: select * from settings limit 1)

at C:\xampp\htdocs\dashboard\vendor\laravel\framework\src\Illuminate\Database\Connection.php:703
699▕ // If an exception occurs when attempting to run a query, we'll format the error
700▕ // message to include the bindings with SQL, which will make this exception a
701▕ // lot more helpful to the developer instead of just the database's errors.
702▕ catch (Exception $e) {
➜ 703▕ throw new QueryException(
704▕ $query, $this->prepareBindings($bindings), $e
705▕ );
706▕ }
707▕ }

Can you add a new feature?

The user's photo will be changed to a new one, so I see no need to keep the old one. How do I delete old photos when a user changes their profile picture

And you can also add it, and the same thing when I delete a user from admin, delete his picture, and the same thing with the rest, such as articles, categories, ....

I think it will be better and will save space on the server

ERR_TOO_MANY_REDIRECTS

after i instaal the repo i try to access Dashbord page

i see this error

ERR_TOO_MANY_REDIRECTS

your help please

BR

There is a problem with the latest update

toastr and jquery and favico

not working

i try this

npm i
npm run build

and this
include(F:\xampp\htdocs\dashboard-peter\vendor\composer/../../app/View/Components/Notifications.php): Failed to open stream: No such file or directory

but not working ?!

php-imagick issue

php-imagick is not available for Php 8.2 any work around or we have to wait for the release

Found Virus In The Files

Hello Peter Thanks for your hard work,
Kindly be informed that when i try to download the resources i found a virus
can you please check this ?

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.