mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-31 06:19:09 +00:00 
			
		
		
		
	
							parent
							
								
									a7e0c005c0
								
							
						
					
					
						commit
						d429ecd44d
					
				
					 167 changed files with 58754 additions and 0 deletions
				
			
		
							
								
								
									
										26
									
								
								database/migrations/2022_02_21_001233_create_ips_table.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										26
									
								
								database/migrations/2022_02_21_001233_create_ips_table.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,26 @@ | |||
| <?php | ||||
| 
 | ||||
| use Illuminate\Database\Migrations\Migration; | ||||
| use Illuminate\Database\Schema\Blueprint; | ||||
| use Illuminate\Support\Facades\Schema; | ||||
| 
 | ||||
| class CreateIPsTable extends Migration | ||||
| { | ||||
|     public function up() | ||||
|     { | ||||
|         Schema::create('ips', function (Blueprint $table) { | ||||
|             $table->char('id', 8)->primary(); | ||||
|             $table->char('service_id', 8); | ||||
|             $table->string('address'); | ||||
|             $table->tinyInteger('is_ipv4')->default(1); | ||||
|             $table->tinyInteger('active')->default(1); | ||||
|             $table->timestamps(); | ||||
|             $table->unique(['service_id','address'], 'uni'); | ||||
|         }); | ||||
|     } | ||||
| 
 | ||||
|     public function down() | ||||
|     { | ||||
|         Schema::dropIfExists('ips'); | ||||
|     } | ||||
| } | ||||
|  | @ -0,0 +1,30 @@ | |||
| <?php | ||||
| 
 | ||||
| use Illuminate\Database\Migrations\Migration; | ||||
| use Illuminate\Database\Schema\Blueprint; | ||||
| use Illuminate\Support\Facades\Schema; | ||||
| 
 | ||||
| return new class extends Migration | ||||
| { | ||||
|     /** | ||||
|      * Run the migrations. | ||||
|      * | ||||
|      * @return void | ||||
|      */ | ||||
|     public function up() | ||||
|     { | ||||
|         Schema::table('settings', function (Blueprint $table) { | ||||
|             $table->string('default_currency')->default('USD'); | ||||
|             $table->integer('default_server_os')->default(20); | ||||
|         }); | ||||
|     } | ||||
| 
 | ||||
|     /** | ||||
|      * Reverse the migrations. | ||||
|      * | ||||
|      * @return void | ||||
|      */ | ||||
|     public function down() | ||||
|     { | ||||
|     } | ||||
| }; | ||||
							
								
								
									
										21
									
								
								public/.htaccess
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										21
									
								
								public/.htaccess
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,21 @@ | |||
| <IfModule mod_rewrite.c> | ||||
|     <IfModule mod_negotiation.c> | ||||
|         Options -MultiViews -Indexes | ||||
|     </IfModule> | ||||
| 
 | ||||
|     RewriteEngine On | ||||
| 
 | ||||
|     # Handle Authorization Header | ||||
|     RewriteCond %{HTTP:Authorization} . | ||||
|     RewriteRule .* - [E=HTTP_AUTHORIZATION:%{HTTP:Authorization}] | ||||
| 
 | ||||
|     # Redirect Trailing Slashes If Not A Folder... | ||||
|     RewriteCond %{REQUEST_FILENAME} !-d | ||||
|     RewriteCond %{REQUEST_URI} (.+)/$ | ||||
|     RewriteRule ^ %1 [L,R=301] | ||||
| 
 | ||||
|     # Send Requests To Front Controller... | ||||
|     RewriteCond %{REQUEST_FILENAME} !-d | ||||
|     RewriteCond %{REQUEST_FILENAME} !-f | ||||
|     RewriteRule ^ index.php [L] | ||||
| </IfModule> | ||||
							
								
								
									
										1488
									
								
								public/css/app.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1488
									
								
								public/css/app.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							
							
								
								
									
										7
									
								
								public/css/bootstrap.min.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								public/css/bootstrap.min.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										5
									
								
								public/css/datatables.bootstrap.min.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								public/css/datatables.bootstrap.min.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										5
									
								
								public/css/fa.min.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								public/css/fa.min.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										0
									
								
								public/favicon.ico
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										0
									
								
								public/favicon.ico
									
										
									
									
									
										Normal file
									
								
							
							
								
								
									
										55
									
								
								public/index.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								public/index.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,55 @@ | |||
| <?php | ||||
| 
 | ||||
| use Illuminate\Contracts\Http\Kernel; | ||||
| use Illuminate\Http\Request; | ||||
| 
 | ||||
| define('LARAVEL_START', microtime(true)); | ||||
| 
 | ||||
| /* | ||||
| |-------------------------------------------------------------------------- | ||||
| | Check If Application Is Under Maintenance | ||||
| |-------------------------------------------------------------------------- | ||||
| | | ||||
| | If the application is maintenance / demo mode via the "down" command we | ||||
| | will require this file so that any prerendered template can be shown | ||||
| | instead of starting the framework, which could cause an exception. | ||||
| | | ||||
| */ | ||||
| 
 | ||||
| if (file_exists(__DIR__.'/../storage/framework/maintenance.php')) { | ||||
|     require __DIR__.'/../storage/framework/maintenance.php'; | ||||
| } | ||||
| 
 | ||||
| /* | ||||
| |-------------------------------------------------------------------------- | ||||
| | Register The Auto Loader | ||||
| |-------------------------------------------------------------------------- | ||||
| | | ||||
| | Composer provides a convenient, automatically generated class loader for | ||||
| | this application. We just need to utilize it! We'll simply require it | ||||
| | into the script here so we don't need to manually load our classes. | ||||
| | | ||||
| */ | ||||
| 
 | ||||
| require __DIR__.'/../vendor/autoload.php'; | ||||
| 
 | ||||
| /* | ||||
| |-------------------------------------------------------------------------- | ||||
| | Run The Application | ||||
| |-------------------------------------------------------------------------- | ||||
| | | ||||
| | Once we have the application, we can handle the incoming request using | ||||
| | the application's HTTP kernel. Then, we will send the response back | ||||
| | to this client's browser, allowing them to enjoy our application. | ||||
| | | ||||
| */ | ||||
| 
 | ||||
| $app = require_once __DIR__.'/../bootstrap/app.php'; | ||||
| 
 | ||||
| $kernel = $app->make(Kernel::class); | ||||
| 
 | ||||
| $response = tap($kernel->handle( | ||||
|     $request = Request::capture() | ||||
| ))->send(); | ||||
| 
 | ||||
| $kernel->terminate($request, $response); | ||||
							
								
								
									
										10
									
								
								public/js/addService.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								public/js/addService.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,10 @@ | |||
| var vm = new Vue({ | ||||
|     data: { | ||||
|         key: "" | ||||
|     }, | ||||
|     methods: { | ||||
|         onChange(event) { | ||||
|             console.log(event.target.value) | ||||
|         } | ||||
|     } | ||||
| }); | ||||
							
								
								
									
										39895
									
								
								public/js/app.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										39895
									
								
								public/js/app.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							
							
								
								
									
										2
									
								
								public/js/axios.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								public/js/axios.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										7
									
								
								public/js/bootstrap.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								public/js/bootstrap.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										14
									
								
								public/js/datatables.bootstrap5.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								public/js/datatables.bootstrap5.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,14 @@ | |||
| /*! | ||||
|  DataTables Bootstrap 5 integration | ||||
|  2020 SpryMedia Ltd - datatables.net/license | ||||
| */ | ||||
| var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(a,b,c){a instanceof String&&(a=String(a));for(var e=a.length,d=0;d<e;d++){var f=a[d];if(b.call(c,f,d,a))return{i:d,v:f}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1;$jscomp.ISOLATE_POLYFILLS=!1; | ||||
| $jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(a,b,c){if(a==Array.prototype||a==Object.prototype)return a;a[b]=c.value;return a};$jscomp.getGlobal=function(a){a=["object"==typeof globalThis&&globalThis,a,"object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global];for(var b=0;b<a.length;++b){var c=a[b];if(c&&c.Math==Math)return c}throw Error("Cannot find global object");};$jscomp.global=$jscomp.getGlobal(this); | ||||
| $jscomp.IS_SYMBOL_NATIVE="function"===typeof Symbol&&"symbol"===typeof Symbol("x");$jscomp.TRUST_ES6_POLYFILLS=!$jscomp.ISOLATE_POLYFILLS||$jscomp.IS_SYMBOL_NATIVE;$jscomp.polyfills={};$jscomp.propertyToPolyfillSymbol={};$jscomp.POLYFILL_PREFIX="$jscp$";var $jscomp$lookupPolyfilledValue=function(a,b){var c=$jscomp.propertyToPolyfillSymbol[b];if(null==c)return a[b];c=a[c];return void 0!==c?c:a[b]}; | ||||
| $jscomp.polyfill=function(a,b,c,e){b&&($jscomp.ISOLATE_POLYFILLS?$jscomp.polyfillIsolated(a,b,c,e):$jscomp.polyfillUnisolated(a,b,c,e))};$jscomp.polyfillUnisolated=function(a,b,c,e){c=$jscomp.global;a=a.split(".");for(e=0;e<a.length-1;e++){var d=a[e];if(!(d in c))return;c=c[d]}a=a[a.length-1];e=c[a];b=b(e);b!=e&&null!=b&&$jscomp.defineProperty(c,a,{configurable:!0,writable:!0,value:b})}; | ||||
| $jscomp.polyfillIsolated=function(a,b,c,e){var d=a.split(".");a=1===d.length;e=d[0];e=!a&&e in $jscomp.polyfills?$jscomp.polyfills:$jscomp.global;for(var f=0;f<d.length-1;f++){var l=d[f];if(!(l in e))return;e=e[l]}d=d[d.length-1];c=$jscomp.IS_SYMBOL_NATIVE&&"es6"===c?e[d]:null;b=b(c);null!=b&&(a?$jscomp.defineProperty($jscomp.polyfills,d,{configurable:!0,writable:!0,value:b}):b!==c&&($jscomp.propertyToPolyfillSymbol[d]=$jscomp.IS_SYMBOL_NATIVE?$jscomp.global.Symbol(d):$jscomp.POLYFILL_PREFIX+d,d= | ||||
|     $jscomp.propertyToPolyfillSymbol[d],$jscomp.defineProperty(e,d,{configurable:!0,writable:!0,value:b})))};$jscomp.polyfill("Array.prototype.find",function(a){return a?a:function(b,c){return $jscomp.findInternal(this,b,c).v}},"es6","es3"); | ||||
| (function(a){"function"===typeof define&&define.amd?define(["jquery","datatables.net"],function(b){return a(b,window,document)}):"object"===typeof exports?module.exports=function(b,c){b||(b=window);c&&c.fn.dataTable||(c=require("datatables.net")(b,c).$);return a(c,b,b.document)}:a(jQuery,window,document)})(function(a,b,c,e){var d=a.fn.dataTable;a.extend(!0,d.defaults,{dom:"<'row'<'col-sm-12 col-md-6'l><'col-sm-12 col-md-6'f>><'row'<'col-sm-12'tr>><'row'<'col-sm-12 col-md-5'i><'col-sm-12 col-md-7'p>>", | ||||
|     renderer:"bootstrap"});a.extend(d.ext.classes,{sWrapper:"dataTables_wrapper dt-bootstrap5",sFilterInput:"form-control form-control-sm",sLengthSelect:"form-select form-select-sm",sProcessing:"dataTables_processing card",sPageButton:"paginate_button page-item"});d.ext.renderer.pageButton.bootstrap=function(f,l,A,B,m,t){var u=new d.Api(f),C=f.oClasses,n=f.oLanguage.oPaginate,D=f.oLanguage.oAria.paginate||{},h,k,v=0,y=function(q,w){var x,E=function(p){p.preventDefault();a(p.currentTarget).hasClass("disabled")|| | ||||
| u.page()==p.data.action||u.page(p.data.action).draw("page")};var r=0;for(x=w.length;r<x;r++){var g=w[r];if(Array.isArray(g))y(q,g);else{k=h="";switch(g){case "ellipsis":h="…";k="disabled";break;case "first":h=n.sFirst;k=g+(0<m?"":" disabled");break;case "previous":h=n.sPrevious;k=g+(0<m?"":" disabled");break;case "next":h=n.sNext;k=g+(m<t-1?"":" disabled");break;case "last":h=n.sLast;k=g+(m<t-1?"":" disabled");break;default:h=g+1,k=m===g?"active":""}if(h){var F=a("<li>",{"class":C.sPageButton+ | ||||
|         " "+k,id:0===A&&"string"===typeof g?f.sTableId+"_"+g:null}).append(a("<a>",{href:"#","aria-controls":f.sTableId,"aria-label":D[g],"data-dt-idx":v,tabindex:f.iTabIndex,"class":"page-link"}).html(h)).appendTo(q);f.oApi._fnBindAction(F,{action:g},E);v++}}}};try{var z=a(l).find(c.activeElement).data("dt-idx")}catch(q){}y(a(l).empty().html('<ul class="pagination"/>').children("ul"),B);z!==e&&a(l).find("[data-dt-idx="+z+"]").trigger("focus")};return d}); | ||||
							
								
								
									
										181
									
								
								public/js/datatables.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										181
									
								
								public/js/datatables.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,181 @@ | |||
| /*! | ||||
|    Copyright 2008-2020 SpryMedia Ltd. | ||||
| 
 | ||||
|  This source file is free software, available under the following license: | ||||
|    MIT license - http://datatables.net/license
 | ||||
| 
 | ||||
|  This source file is distributed in the hope that it will be useful, but | ||||
|  WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY | ||||
|  or FITNESS FOR A PARTICULAR PURPOSE. See the license files for details. | ||||
| 
 | ||||
|  For details please refer to: http://www.datatables.net
 | ||||
|  DataTables 1.10.21 | ||||
|  ©2008-2020 SpryMedia Ltd - datatables.net/license | ||||
| */ | ||||
| var $jscomp=$jscomp||{};$jscomp.scope={};$jscomp.findInternal=function(f,y,w){f instanceof String&&(f=String(f));for(var n=f.length,H=0;H<n;H++){var L=f[H];if(y.call(w,L,H,f))return{i:H,v:L}}return{i:-1,v:void 0}};$jscomp.ASSUME_ES5=!1;$jscomp.ASSUME_NO_NATIVE_MAP=!1;$jscomp.ASSUME_NO_NATIVE_SET=!1;$jscomp.SIMPLE_FROUND_POLYFILL=!1; | ||||
| $jscomp.defineProperty=$jscomp.ASSUME_ES5||"function"==typeof Object.defineProperties?Object.defineProperty:function(f,y,w){f!=Array.prototype&&f!=Object.prototype&&(f[y]=w.value)};$jscomp.getGlobal=function(f){f=["object"==typeof window&&window,"object"==typeof self&&self,"object"==typeof global&&global,f];for(var y=0;y<f.length;++y){var w=f[y];if(w&&w.Math==Math)return w}throw Error("Cannot find global object");};$jscomp.global=$jscomp.getGlobal(this); | ||||
| $jscomp.polyfill=function(f,y,w,n){if(y){w=$jscomp.global;f=f.split(".");for(n=0;n<f.length-1;n++){var H=f[n];H in w||(w[H]={});w=w[H]}f=f[f.length-1];n=w[f];y=y(n);y!=n&&null!=y&&$jscomp.defineProperty(w,f,{configurable:!0,writable:!0,value:y})}};$jscomp.polyfill("Array.prototype.find",function(f){return f?f:function(f,w){return $jscomp.findInternal(this,f,w).v}},"es6","es3"); | ||||
| (function(f){"function"===typeof define&&define.amd?define(["jquery"],function(y){return f(y,window,document)}):"object"===typeof exports?module.exports=function(y,w){y||(y=window);w||(w="undefined"!==typeof window?require("jquery"):require("jquery")(y));return f(w,y,y.document)}:f(jQuery,window,document)})(function(f,y,w,n){function H(a){var b,c,d={};f.each(a,function(e,h){(b=e.match(/^([^A-Z]+?)([A-Z])/))&&-1!=="a aa ai ao as b fn i m o s ".indexOf(b[1]+" ")&&(c=e.replace(b[0],b[2].toLowerCase()), | ||||
|     d[c]=e,"o"===b[1]&&H(a[e]))});a._hungarianMap=d}function L(a,b,c){a._hungarianMap||H(a);var d;f.each(b,function(e,h){d=a._hungarianMap[e];d===n||!c&&b[d]!==n||("o"===d.charAt(0)?(b[d]||(b[d]={}),f.extend(!0,b[d],b[e]),L(a[d],b[d],c)):b[d]=b[e])})}function Fa(a){var b=q.defaults.oLanguage,c=b.sDecimal;c&&Ga(c);if(a){var d=a.sZeroRecords;!a.sEmptyTable&&d&&"No data available in table"===b.sEmptyTable&&M(a,a,"sZeroRecords","sEmptyTable");!a.sLoadingRecords&&d&&"Loading..."===b.sLoadingRecords&&M(a,a, | ||||
|     "sZeroRecords","sLoadingRecords");a.sInfoThousands&&(a.sThousands=a.sInfoThousands);(a=a.sDecimal)&&c!==a&&Ga(a)}}function ib(a){E(a,"ordering","bSort");E(a,"orderMulti","bSortMulti");E(a,"orderClasses","bSortClasses");E(a,"orderCellsTop","bSortCellsTop");E(a,"order","aaSorting");E(a,"orderFixed","aaSortingFixed");E(a,"paging","bPaginate");E(a,"pagingType","sPaginationType");E(a,"pageLength","iDisplayLength");E(a,"searching","bFilter");"boolean"===typeof a.sScrollX&&(a.sScrollX=a.sScrollX?"100%": | ||||
|     "");"boolean"===typeof a.scrollX&&(a.scrollX=a.scrollX?"100%":"");if(a=a.aoSearchCols)for(var b=0,c=a.length;b<c;b++)a[b]&&L(q.models.oSearch,a[b])}function jb(a){E(a,"orderable","bSortable");E(a,"orderData","aDataSort");E(a,"orderSequence","asSorting");E(a,"orderDataType","sortDataType");var b=a.aDataSort;"number"!==typeof b||f.isArray(b)||(a.aDataSort=[b])}function kb(a){if(!q.__browser){var b={};q.__browser=b;var c=f("<div/>").css({position:"fixed",top:0,left:-1*f(y).scrollLeft(),height:1,width:1, | ||||
|     overflow:"hidden"}).append(f("<div/>").css({position:"absolute",top:1,left:1,width:100,overflow:"scroll"}).append(f("<div/>").css({width:"100%",height:10}))).appendTo("body"),d=c.children(),e=d.children();b.barWidth=d[0].offsetWidth-d[0].clientWidth;b.bScrollOversize=100===e[0].offsetWidth&&100!==d[0].clientWidth;b.bScrollbarLeft=1!==Math.round(e.offset().left);b.bBounding=c[0].getBoundingClientRect().width?!0:!1;c.remove()}f.extend(a.oBrowser,q.__browser);a.oScroll.iBarWidth=q.__browser.barWidth} | ||||
|     function lb(a,b,c,d,e,h){var g=!1;if(c!==n){var k=c;g=!0}for(;d!==e;)a.hasOwnProperty(d)&&(k=g?b(k,a[d],d,a):a[d],g=!0,d+=h);return k}function Ha(a,b){var c=q.defaults.column,d=a.aoColumns.length;c=f.extend({},q.models.oColumn,c,{nTh:b?b:w.createElement("th"),sTitle:c.sTitle?c.sTitle:b?b.innerHTML:"",aDataSort:c.aDataSort?c.aDataSort:[d],mData:c.mData?c.mData:d,idx:d});a.aoColumns.push(c);c=a.aoPreSearchCols;c[d]=f.extend({},q.models.oSearch,c[d]);la(a,d,f(b).data())}function la(a,b,c){b=a.aoColumns[b]; | ||||
|         var d=a.oClasses,e=f(b.nTh);if(!b.sWidthOrig){b.sWidthOrig=e.attr("width")||null;var h=(e.attr("style")||"").match(/width:\s*(\d+[pxem%]+)/);h&&(b.sWidthOrig=h[1])}c!==n&&null!==c&&(jb(c),L(q.defaults.column,c,!0),c.mDataProp===n||c.mData||(c.mData=c.mDataProp),c.sType&&(b._sManualType=c.sType),c.className&&!c.sClass&&(c.sClass=c.className),c.sClass&&e.addClass(c.sClass),f.extend(b,c),M(b,c,"sWidth","sWidthOrig"),c.iDataSort!==n&&(b.aDataSort=[c.iDataSort]),M(b,c,"aDataSort"));var g=b.mData,k=T(g), | ||||
|             l=b.mRender?T(b.mRender):null;c=function(a){return"string"===typeof a&&-1!==a.indexOf("@")};b._bAttrSrc=f.isPlainObject(g)&&(c(g.sort)||c(g.type)||c(g.filter));b._setter=null;b.fnGetData=function(a,b,c){var d=k(a,b,n,c);return l&&b?l(d,b,a,c):d};b.fnSetData=function(a,b,c){return Q(g)(a,b,c)};"number"!==typeof g&&(a._rowReadObject=!0);a.oFeatures.bSort||(b.bSortable=!1,e.addClass(d.sSortableNone));a=-1!==f.inArray("asc",b.asSorting);c=-1!==f.inArray("desc",b.asSorting);b.bSortable&&(a||c)?a&&!c?(b.sSortingClass= | ||||
|             d.sSortableAsc,b.sSortingClassJUI=d.sSortJUIAscAllowed):!a&&c?(b.sSortingClass=d.sSortableDesc,b.sSortingClassJUI=d.sSortJUIDescAllowed):(b.sSortingClass=d.sSortable,b.sSortingClassJUI=d.sSortJUI):(b.sSortingClass=d.sSortableNone,b.sSortingClassJUI="")}function Z(a){if(!1!==a.oFeatures.bAutoWidth){var b=a.aoColumns;Ia(a);for(var c=0,d=b.length;c<d;c++)b[c].nTh.style.width=b[c].sWidth}b=a.oScroll;""===b.sY&&""===b.sX||ma(a);A(a,null,"column-sizing",[a])}function aa(a,b){a=na(a,"bVisible");return"number"=== | ||||
|     typeof a[b]?a[b]:null}function ba(a,b){a=na(a,"bVisible");b=f.inArray(b,a);return-1!==b?b:null}function V(a){var b=0;f.each(a.aoColumns,function(a,d){d.bVisible&&"none"!==f(d.nTh).css("display")&&b++});return b}function na(a,b){var c=[];f.map(a.aoColumns,function(a,e){a[b]&&c.push(e)});return c}function Ja(a){var b=a.aoColumns,c=a.aoData,d=q.ext.type.detect,e,h,g;var k=0;for(e=b.length;k<e;k++){var f=b[k];var m=[];if(!f.sType&&f._sManualType)f.sType=f._sManualType;else if(!f.sType){var p=0;for(h= | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            d.length;p<h;p++){var v=0;for(g=c.length;v<g;v++){m[v]===n&&(m[v]=F(a,v,k,"type"));var u=d[p](m[v],a);if(!u&&p!==d.length-1)break;if("html"===u)break}if(u){f.sType=u;break}}f.sType||(f.sType="string")}}}function mb(a,b,c,d){var e,h,g,k=a.aoColumns;if(b)for(e=b.length-1;0<=e;e--){var l=b[e];var m=l.targets!==n?l.targets:l.aTargets;f.isArray(m)||(m=[m]);var p=0;for(h=m.length;p<h;p++)if("number"===typeof m[p]&&0<=m[p]){for(;k.length<=m[p];)Ha(a);d(m[p],l)}else if("number"===typeof m[p]&&0>m[p])d(k.length+ | ||||
|         m[p],l);else if("string"===typeof m[p]){var v=0;for(g=k.length;v<g;v++)("_all"==m[p]||f(k[v].nTh).hasClass(m[p]))&&d(v,l)}}if(c)for(e=0,a=c.length;e<a;e++)d(e,c[e])}function R(a,b,c,d){var e=a.aoData.length,h=f.extend(!0,{},q.models.oRow,{src:c?"dom":"data",idx:e});h._aData=b;a.aoData.push(h);for(var g=a.aoColumns,k=0,l=g.length;k<l;k++)g[k].sType=null;a.aiDisplayMaster.push(e);b=a.rowIdFn(b);b!==n&&(a.aIds[b]=h);!c&&a.oFeatures.bDeferRender||Ka(a,e,c,d);return e}function oa(a,b){var c;b instanceof | ||||
|     f||(b=f(b));return b.map(function(b,e){c=La(a,e);return R(a,c.data,e,c.cells)})}function F(a,b,c,d){var e=a.iDraw,h=a.aoColumns[c],g=a.aoData[b]._aData,k=h.sDefaultContent,f=h.fnGetData(g,d,{settings:a,row:b,col:c});if(f===n)return a.iDrawError!=e&&null===k&&(O(a,0,"Requested unknown parameter "+("function"==typeof h.mData?"{function}":"'"+h.mData+"'")+" for row "+b+", column "+c,4),a.iDrawError=e),k;if((f===g||null===f)&&null!==k&&d!==n)f=k;else if("function"===typeof f)return f.call(g);return null=== | ||||
|     f&&"display"==d?"":f}function nb(a,b,c,d){a.aoColumns[c].fnSetData(a.aoData[b]._aData,d,{settings:a,row:b,col:c})}function Ma(a){return f.map(a.match(/(\\.|[^\.])+/g)||[""],function(a){return a.replace(/\\\./g,".")})}function T(a){if(f.isPlainObject(a)){var b={};f.each(a,function(a,c){c&&(b[a]=T(c))});return function(a,c,h,g){var d=b[c]||b._;return d!==n?d(a,c,h,g):a}}if(null===a)return function(a){return a};if("function"===typeof a)return function(b,c,h,g){return a(b,c,h,g)};if("string"!==typeof a|| | ||||
|         -1===a.indexOf(".")&&-1===a.indexOf("[")&&-1===a.indexOf("("))return function(b,c){return b[a]};var c=function(a,b,h){if(""!==h){var d=Ma(h);for(var e=0,l=d.length;e<l;e++){h=d[e].match(ca);var m=d[e].match(W);if(h){d[e]=d[e].replace(ca,"");""!==d[e]&&(a=a[d[e]]);m=[];d.splice(0,e+1);d=d.join(".");if(f.isArray(a))for(e=0,l=a.length;e<l;e++)m.push(c(a[e],b,d));a=h[0].substring(1,h[0].length-1);a=""===a?m:m.join(a);break}else if(m){d[e]=d[e].replace(W,"");a=a[d[e]]();continue}if(null===a||a[d[e]]=== | ||||
|         n)return n;a=a[d[e]]}}return a};return function(b,e){return c(b,e,a)}}function Q(a){if(f.isPlainObject(a))return Q(a._);if(null===a)return function(){};if("function"===typeof a)return function(b,d,e){a(b,"set",d,e)};if("string"!==typeof a||-1===a.indexOf(".")&&-1===a.indexOf("[")&&-1===a.indexOf("("))return function(b,d){b[a]=d};var b=function(a,d,e){e=Ma(e);var c=e[e.length-1];for(var g,k,l=0,m=e.length-1;l<m;l++){g=e[l].match(ca);k=e[l].match(W);if(g){e[l]=e[l].replace(ca,"");a[e[l]]=[];c=e.slice(); | ||||
|         c.splice(0,l+1);g=c.join(".");if(f.isArray(d))for(k=0,m=d.length;k<m;k++)c={},b(c,d[k],g),a[e[l]].push(c);else a[e[l]]=d;return}k&&(e[l]=e[l].replace(W,""),a=a[e[l]](d));if(null===a[e[l]]||a[e[l]]===n)a[e[l]]={};a=a[e[l]]}if(c.match(W))a[c.replace(W,"")](d);else a[c.replace(ca,"")]=d};return function(c,d){return b(c,d,a)}}function Na(a){return K(a.aoData,"_aData")}function pa(a){a.aoData.length=0;a.aiDisplayMaster.length=0;a.aiDisplay.length=0;a.aIds={}}function qa(a,b,c){for(var d=-1,e=0,h=a.length;e< | ||||
|     h;e++)a[e]==b?d=e:a[e]>b&&a[e]--; -1!=d&&c===n&&a.splice(d,1)}function da(a,b,c,d){var e=a.aoData[b],h,g=function(c,d){for(;c.childNodes.length;)c.removeChild(c.firstChild);c.innerHTML=F(a,b,d,"display")};if("dom"!==c&&(c&&"auto"!==c||"dom"!==e.src)){var k=e.anCells;if(k)if(d!==n)g(k[d],d);else for(c=0,h=k.length;c<h;c++)g(k[c],c)}else e._aData=La(a,e,d,d===n?n:e._aData).data;e._aSortData=null;e._aFilterData=null;g=a.aoColumns;if(d!==n)g[d].sType=null;else{c=0;for(h=g.length;c<h;c++)g[c].sType=null; | ||||
|         Oa(a,e)}}function La(a,b,c,d){var e=[],h=b.firstChild,g,k=0,l,m=a.aoColumns,p=a._rowReadObject;d=d!==n?d:p?{}:[];var v=function(a,b){if("string"===typeof a){var c=a.indexOf("@");-1!==c&&(c=a.substring(c+1),Q(a)(d,b.getAttribute(c)))}},u=function(a){if(c===n||c===k)g=m[k],l=f.trim(a.innerHTML),g&&g._bAttrSrc?(Q(g.mData._)(d,l),v(g.mData.sort,a),v(g.mData.type,a),v(g.mData.filter,a)):p?(g._setter||(g._setter=Q(g.mData)),g._setter(d,l)):d[k]=l;k++};if(h)for(;h;){var q=h.nodeName.toUpperCase();if("TD"== | ||||
|         q||"TH"==q)u(h),e.push(h);h=h.nextSibling}else for(e=b.anCells,h=0,q=e.length;h<q;h++)u(e[h]);(b=b.firstChild?b:b.nTr)&&(b=b.getAttribute("id"))&&Q(a.rowId)(d,b);return{data:d,cells:e}}function Ka(a,b,c,d){var e=a.aoData[b],h=e._aData,g=[],k,l;if(null===e.nTr){var m=c||w.createElement("tr");e.nTr=m;e.anCells=g;m._DT_RowIndex=b;Oa(a,e);var p=0;for(k=a.aoColumns.length;p<k;p++){var v=a.aoColumns[p];var n=(l=c?!1:!0)?w.createElement(v.sCellType):d[p];n._DT_CellIndex={row:b,column:p};g.push(n);if(l|| | ||||
|         !(c&&!v.mRender&&v.mData===p||f.isPlainObject(v.mData)&&v.mData._===p+".display"))n.innerHTML=F(a,b,p,"display");v.sClass&&(n.className+=" "+v.sClass);v.bVisible&&!c?m.appendChild(n):!v.bVisible&&c&&n.parentNode.removeChild(n);v.fnCreatedCell&&v.fnCreatedCell.call(a.oInstance,n,F(a,b,p),h,b,p)}A(a,"aoRowCreatedCallback",null,[m,h,b,g])}e.nTr.setAttribute("role","row")}function Oa(a,b){var c=b.nTr,d=b._aData;if(c){if(a=a.rowIdFn(d))c.id=a;d.DT_RowClass&&(a=d.DT_RowClass.split(" "),b.__rowc=b.__rowc? | ||||
|         sa(b.__rowc.concat(a)):a,f(c).removeClass(b.__rowc.join(" ")).addClass(d.DT_RowClass));d.DT_RowAttr&&f(c).attr(d.DT_RowAttr);d.DT_RowData&&f(c).data(d.DT_RowData)}}function ob(a){var b,c,d=a.nTHead,e=a.nTFoot,h=0===f("th, td",d).length,g=a.oClasses,k=a.aoColumns;h&&(c=f("<tr/>").appendTo(d));var l=0;for(b=k.length;l<b;l++){var m=k[l];var p=f(m.nTh).addClass(m.sClass);h&&p.appendTo(c);a.oFeatures.bSort&&(p.addClass(m.sSortingClass),!1!==m.bSortable&&(p.attr("tabindex",a.iTabIndex).attr("aria-controls", | ||||
|         a.sTableId),Pa(a,m.nTh,l)));m.sTitle!=p[0].innerHTML&&p.html(m.sTitle);Qa(a,"header")(a,p,m,g)}h&&ea(a.aoHeader,d);f(d).find(">tr").attr("role","row");f(d).find(">tr>th, >tr>td").addClass(g.sHeaderTH);f(e).find(">tr>th, >tr>td").addClass(g.sFooterTH);if(null!==e)for(a=a.aoFooter[0],l=0,b=a.length;l<b;l++)m=k[l],m.nTf=a[l].cell,m.sClass&&f(m.nTf).addClass(m.sClass)}function fa(a,b,c){var d,e,h=[],g=[],k=a.aoColumns.length;if(b){c===n&&(c=!1);var l=0;for(d=b.length;l<d;l++){h[l]=b[l].slice();h[l].nTr= | ||||
|         b[l].nTr;for(e=k-1;0<=e;e--)a.aoColumns[e].bVisible||c||h[l].splice(e,1);g.push([])}l=0;for(d=h.length;l<d;l++){if(a=h[l].nTr)for(;e=a.firstChild;)a.removeChild(e);e=0;for(b=h[l].length;e<b;e++){var m=k=1;if(g[l][e]===n){a.appendChild(h[l][e].cell);for(g[l][e]=1;h[l+k]!==n&&h[l][e].cell==h[l+k][e].cell;)g[l+k][e]=1,k++;for(;h[l][e+m]!==n&&h[l][e].cell==h[l][e+m].cell;){for(c=0;c<k;c++)g[l+c][e+m]=1;m++}f(h[l][e].cell).attr("rowspan",k).attr("colspan",m)}}}}}function S(a){var b=A(a,"aoPreDrawCallback", | ||||
|         "preDraw",[a]);if(-1!==f.inArray(!1,b))J(a,!1);else{b=[];var c=0,d=a.asStripeClasses,e=d.length,h=a.oLanguage,g=a.iInitDisplayStart,k="ssp"==I(a),l=a.aiDisplay;a.bDrawing=!0;g!==n&&-1!==g&&(a._iDisplayStart=k?g:g>=a.fnRecordsDisplay()?0:g,a.iInitDisplayStart=-1);g=a._iDisplayStart;var m=a.fnDisplayEnd();if(a.bDeferLoading)a.bDeferLoading=!1,a.iDraw++,J(a,!1);else if(!k)a.iDraw++;else if(!a.bDestroying&&!pb(a))return;if(0!==l.length)for(h=k?a.aoData.length:m,k=k?0:g;k<h;k++){var p=l[k],v=a.aoData[p]; | ||||
|         null===v.nTr&&Ka(a,p);var u=v.nTr;if(0!==e){var q=d[c%e];v._sRowStripe!=q&&(f(u).removeClass(v._sRowStripe).addClass(q),v._sRowStripe=q)}A(a,"aoRowCallback",null,[u,v._aData,c,k,p]);b.push(u);c++}else c=h.sZeroRecords,1==a.iDraw&&"ajax"==I(a)?c=h.sLoadingRecords:h.sEmptyTable&&0===a.fnRecordsTotal()&&(c=h.sEmptyTable),b[0]=f("<tr/>",{"class":e?d[0]:""}).append(f("<td />",{valign:"top",colSpan:V(a),"class":a.oClasses.sRowEmpty}).html(c))[0];A(a,"aoHeaderCallback","header",[f(a.nTHead).children("tr")[0], | ||||
|         Na(a),g,m,l]);A(a,"aoFooterCallback","footer",[f(a.nTFoot).children("tr")[0],Na(a),g,m,l]);d=f(a.nTBody);d.children().detach();d.append(f(b));A(a,"aoDrawCallback","draw",[a]);a.bSorted=!1;a.bFiltered=!1;a.bDrawing=!1}}function U(a,b){var c=a.oFeatures,d=c.bFilter;c.bSort&&qb(a);d?ha(a,a.oPreviousSearch):a.aiDisplay=a.aiDisplayMaster.slice();!0!==b&&(a._iDisplayStart=0);a._drawHold=b;S(a);a._drawHold=!1}function rb(a){var b=a.oClasses,c=f(a.nTable);c=f("<div/>").insertBefore(c);var d=a.oFeatures,e= | ||||
|         f("<div/>",{id:a.sTableId+"_wrapper","class":b.sWrapper+(a.nTFoot?"":" "+b.sNoFooter)});a.nHolding=c[0];a.nTableWrapper=e[0];a.nTableReinsertBefore=a.nTable.nextSibling;for(var h=a.sDom.split(""),g,k,l,m,p,n,u=0;u<h.length;u++){g=null;k=h[u];if("<"==k){l=f("<div/>")[0];m=h[u+1];if("'"==m||'"'==m){p="";for(n=2;h[u+n]!=m;)p+=h[u+n],n++;"H"==p?p=b.sJUIHeader:"F"==p&&(p=b.sJUIFooter);-1!=p.indexOf(".")?(m=p.split("."),l.id=m[0].substr(1,m[0].length-1),l.className=m[1]):"#"==p.charAt(0)?l.id=p.substr(1, | ||||
|         p.length-1):l.className=p;u+=n}e.append(l);e=f(l)}else if(">"==k)e=e.parent();else if("l"==k&&d.bPaginate&&d.bLengthChange)g=sb(a);else if("f"==k&&d.bFilter)g=tb(a);else if("r"==k&&d.bProcessing)g=ub(a);else if("t"==k)g=vb(a);else if("i"==k&&d.bInfo)g=wb(a);else if("p"==k&&d.bPaginate)g=xb(a);else if(0!==q.ext.feature.length)for(l=q.ext.feature,n=0,m=l.length;n<m;n++)if(k==l[n].cFeature){g=l[n].fnInit(a);break}g&&(l=a.aanFeatures,l[k]||(l[k]=[]),l[k].push(g),e.append(g))}c.replaceWith(e);a.nHolding= | ||||
|         null}function ea(a,b){b=f(b).children("tr");var c,d,e;a.splice(0,a.length);var h=0;for(e=b.length;h<e;h++)a.push([]);h=0;for(e=b.length;h<e;h++){var g=b[h];for(c=g.firstChild;c;){if("TD"==c.nodeName.toUpperCase()||"TH"==c.nodeName.toUpperCase()){var k=1*c.getAttribute("colspan");var l=1*c.getAttribute("rowspan");k=k&&0!==k&&1!==k?k:1;l=l&&0!==l&&1!==l?l:1;var m=0;for(d=a[h];d[m];)m++;var p=m;var n=1===k?!0:!1;for(d=0;d<k;d++)for(m=0;m<l;m++)a[h+m][p+d]={cell:c,unique:n},a[h+m].nTr=g}c=c.nextSibling}}} | ||||
|     function ta(a,b,c){var d=[];c||(c=a.aoHeader,b&&(c=[],ea(c,b)));b=0;for(var e=c.length;b<e;b++)for(var h=0,g=c[b].length;h<g;h++)!c[b][h].unique||d[h]&&a.bSortCellsTop||(d[h]=c[b][h].cell);return d}function ua(a,b,c){A(a,"aoServerParams","serverParams",[b]);if(b&&f.isArray(b)){var d={},e=/(.*?)\[\]$/;f.each(b,function(a,b){(a=b.name.match(e))?(a=a[0],d[a]||(d[a]=[]),d[a].push(b.value)):d[b.name]=b.value});b=d}var h=a.ajax,g=a.oInstance,k=function(b){A(a,null,"xhr",[a,b,a.jqXHR]);c(b)};if(f.isPlainObject(h)&& | ||||
|         h.data){var l=h.data;var m="function"===typeof l?l(b,a):l;b="function"===typeof l&&m?m:f.extend(!0,b,m);delete h.data}m={data:b,success:function(b){var c=b.error||b.sError;c&&O(a,0,c);a.json=b;k(b)},dataType:"json",cache:!1,type:a.sServerMethod,error:function(b,c,d){d=A(a,null,"xhr",[a,null,a.jqXHR]);-1===f.inArray(!0,d)&&("parsererror"==c?O(a,0,"Invalid JSON response",1):4===b.readyState&&O(a,0,"Ajax error",7));J(a,!1)}};a.oAjaxData=b;A(a,null,"preXhr",[a,b]);a.fnServerData?a.fnServerData.call(g, | ||||
|         a.sAjaxSource,f.map(b,function(a,b){return{name:b,value:a}}),k,a):a.sAjaxSource||"string"===typeof h?a.jqXHR=f.ajax(f.extend(m,{url:h||a.sAjaxSource})):"function"===typeof h?a.jqXHR=h.call(g,b,k,a):(a.jqXHR=f.ajax(f.extend(m,h)),h.data=l)}function pb(a){return a.bAjaxDataGet?(a.iDraw++,J(a,!0),ua(a,yb(a),function(b){zb(a,b)}),!1):!0}function yb(a){var b=a.aoColumns,c=b.length,d=a.oFeatures,e=a.oPreviousSearch,h=a.aoPreSearchCols,g=[],k=X(a);var l=a._iDisplayStart;var m=!1!==d.bPaginate?a._iDisplayLength: | ||||
|         -1;var p=function(a,b){g.push({name:a,value:b})};p("sEcho",a.iDraw);p("iColumns",c);p("sColumns",K(b,"sName").join(","));p("iDisplayStart",l);p("iDisplayLength",m);var n={draw:a.iDraw,columns:[],order:[],start:l,length:m,search:{value:e.sSearch,regex:e.bRegex}};for(l=0;l<c;l++){var u=b[l];var ra=h[l];m="function"==typeof u.mData?"function":u.mData;n.columns.push({data:m,name:u.sName,searchable:u.bSearchable,orderable:u.bSortable,search:{value:ra.sSearch,regex:ra.bRegex}});p("mDataProp_"+l,m);d.bFilter&& | ||||
|     (p("sSearch_"+l,ra.sSearch),p("bRegex_"+l,ra.bRegex),p("bSearchable_"+l,u.bSearchable));d.bSort&&p("bSortable_"+l,u.bSortable)}d.bFilter&&(p("sSearch",e.sSearch),p("bRegex",e.bRegex));d.bSort&&(f.each(k,function(a,b){n.order.push({column:b.col,dir:b.dir});p("iSortCol_"+a,b.col);p("sSortDir_"+a,b.dir)}),p("iSortingCols",k.length));b=q.ext.legacy.ajax;return null===b?a.sAjaxSource?g:n:b?g:n}function zb(a,b){var c=function(a,c){return b[a]!==n?b[a]:b[c]},d=va(a,b),e=c("sEcho","draw"),h=c("iTotalRecords", | ||||
|         "recordsTotal");c=c("iTotalDisplayRecords","recordsFiltered");if(e!==n){if(1*e<a.iDraw)return;a.iDraw=1*e}pa(a);a._iRecordsTotal=parseInt(h,10);a._iRecordsDisplay=parseInt(c,10);e=0;for(h=d.length;e<h;e++)R(a,d[e]);a.aiDisplay=a.aiDisplayMaster.slice();a.bAjaxDataGet=!1;S(a);a._bInitComplete||wa(a,b);a.bAjaxDataGet=!0;J(a,!1)}function va(a,b){a=f.isPlainObject(a.ajax)&&a.ajax.dataSrc!==n?a.ajax.dataSrc:a.sAjaxDataProp;return"data"===a?b.aaData||b[a]:""!==a?T(a)(b):b}function tb(a){var b=a.oClasses, | ||||
|         c=a.sTableId,d=a.oLanguage,e=a.oPreviousSearch,h=a.aanFeatures,g='<input type="search" class="'+b.sFilterInput+'"/>',k=d.sSearch;k=k.match(/_INPUT_/)?k.replace("_INPUT_",g):k+g;b=f("<div/>",{id:h.f?null:c+"_filter","class":b.sFilter}).append(f("<label/>").append(k));var l=function(){var b=this.value?this.value:"";b!=e.sSearch&&(ha(a,{sSearch:b,bRegex:e.bRegex,bSmart:e.bSmart,bCaseInsensitive:e.bCaseInsensitive}),a._iDisplayStart=0,S(a))};h=null!==a.searchDelay?a.searchDelay:"ssp"===I(a)?400:0;var m= | ||||
|         f("input",b).val(e.sSearch).attr("placeholder",d.sSearchPlaceholder).on("keyup.DT search.DT input.DT paste.DT cut.DT",h?Ra(l,h):l).on("mouseup",function(a){setTimeout(function(){l.call(m[0])},10)}).on("keypress.DT",function(a){if(13==a.keyCode)return!1}).attr("aria-controls",c);f(a.nTable).on("search.dt.DT",function(b,c){if(a===c)try{m[0]!==w.activeElement&&m.val(e.sSearch)}catch(u){}});return b[0]}function ha(a,b,c){var d=a.oPreviousSearch,e=a.aoPreSearchCols,h=function(a){d.sSearch=a.sSearch;d.bRegex= | ||||
|         a.bRegex;d.bSmart=a.bSmart;d.bCaseInsensitive=a.bCaseInsensitive},g=function(a){return a.bEscapeRegex!==n?!a.bEscapeRegex:a.bRegex};Ja(a);if("ssp"!=I(a)){Ab(a,b.sSearch,c,g(b),b.bSmart,b.bCaseInsensitive);h(b);for(b=0;b<e.length;b++)Bb(a,e[b].sSearch,b,g(e[b]),e[b].bSmart,e[b].bCaseInsensitive);Cb(a)}else h(b);a.bFiltered=!0;A(a,null,"search",[a])}function Cb(a){for(var b=q.ext.search,c=a.aiDisplay,d,e,h=0,g=b.length;h<g;h++){for(var k=[],l=0,m=c.length;l<m;l++)e=c[l],d=a.aoData[e],b[h](a,d._aFilterData, | ||||
|         e,d._aData,l)&&k.push(e);c.length=0;f.merge(c,k)}}function Bb(a,b,c,d,e,h){if(""!==b){var g=[],k=a.aiDisplay;d=Sa(b,d,e,h);for(e=0;e<k.length;e++)b=a.aoData[k[e]]._aFilterData[c],d.test(b)&&g.push(k[e]);a.aiDisplay=g}}function Ab(a,b,c,d,e,h){e=Sa(b,d,e,h);var g=a.oPreviousSearch.sSearch,k=a.aiDisplayMaster;h=[];0!==q.ext.search.length&&(c=!0);var f=Db(a);if(0>=b.length)a.aiDisplay=k.slice();else{if(f||c||d||g.length>b.length||0!==b.indexOf(g)||a.bSorted)a.aiDisplay=k.slice();b=a.aiDisplay;for(c= | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                0;c<b.length;c++)e.test(a.aoData[b[c]]._sFilterRow)&&h.push(b[c]);a.aiDisplay=h}}function Sa(a,b,c,d){a=b?a:Ta(a);c&&(a="^(?=.*?"+f.map(a.match(/"[^"]+"|[^ ]+/g)||[""],function(a){if('"'===a.charAt(0)){var b=a.match(/^"(.*)"$/);a=b?b[1]:a}return a.replace('"',"")}).join(")(?=.*?")+").*$");return new RegExp(a,d?"i":"")}function Db(a){var b=a.aoColumns,c,d,e=q.ext.type.search;var h=!1;var g=0;for(c=a.aoData.length;g<c;g++){var k=a.aoData[g];if(!k._aFilterData){var f=[];var m=0;for(d=b.length;m<d;m++){h= | ||||
|         b[m];if(h.bSearchable){var p=F(a,g,m,"filter");e[h.sType]&&(p=e[h.sType](p));null===p&&(p="");"string"!==typeof p&&p.toString&&(p=p.toString())}else p="";p.indexOf&&-1!==p.indexOf("&")&&(xa.innerHTML=p,p=$b?xa.textContent:xa.innerText);p.replace&&(p=p.replace(/[\r\n\u2028]/g,""));f.push(p)}k._aFilterData=f;k._sFilterRow=f.join("  ");h=!0}}return h}function Eb(a){return{search:a.sSearch,smart:a.bSmart,regex:a.bRegex,caseInsensitive:a.bCaseInsensitive}}function Fb(a){return{sSearch:a.search,bSmart:a.smart, | ||||
|         bRegex:a.regex,bCaseInsensitive:a.caseInsensitive}}function wb(a){var b=a.sTableId,c=a.aanFeatures.i,d=f("<div/>",{"class":a.oClasses.sInfo,id:c?null:b+"_info"});c||(a.aoDrawCallback.push({fn:Gb,sName:"information"}),d.attr("role","status").attr("aria-live","polite"),f(a.nTable).attr("aria-describedby",b+"_info"));return d[0]}function Gb(a){var b=a.aanFeatures.i;if(0!==b.length){var c=a.oLanguage,d=a._iDisplayStart+1,e=a.fnDisplayEnd(),h=a.fnRecordsTotal(),g=a.fnRecordsDisplay(),k=g?c.sInfo:c.sInfoEmpty; | ||||
|         g!==h&&(k+=" "+c.sInfoFiltered);k+=c.sInfoPostFix;k=Hb(a,k);c=c.fnInfoCallback;null!==c&&(k=c.call(a.oInstance,a,d,e,h,g,k));f(b).html(k)}}function Hb(a,b){var c=a.fnFormatNumber,d=a._iDisplayStart+1,e=a._iDisplayLength,h=a.fnRecordsDisplay(),g=-1===e;return b.replace(/_START_/g,c.call(a,d)).replace(/_END_/g,c.call(a,a.fnDisplayEnd())).replace(/_MAX_/g,c.call(a,a.fnRecordsTotal())).replace(/_TOTAL_/g,c.call(a,h)).replace(/_PAGE_/g,c.call(a,g?1:Math.ceil(d/e))).replace(/_PAGES_/g,c.call(a,g?1:Math.ceil(h/ | ||||
|         e)))}function ia(a){var b=a.iInitDisplayStart,c=a.aoColumns;var d=a.oFeatures;var e=a.bDeferLoading;if(a.bInitialised){rb(a);ob(a);fa(a,a.aoHeader);fa(a,a.aoFooter);J(a,!0);d.bAutoWidth&&Ia(a);var h=0;for(d=c.length;h<d;h++){var g=c[h];g.sWidth&&(g.nTh.style.width=B(g.sWidth))}A(a,null,"preInit",[a]);U(a);c=I(a);if("ssp"!=c||e)"ajax"==c?ua(a,[],function(c){var d=va(a,c);for(h=0;h<d.length;h++)R(a,d[h]);a.iInitDisplayStart=b;U(a);J(a,!1);wa(a,c)},a):(J(a,!1),wa(a))}else setTimeout(function(){ia(a)}, | ||||
|         200)}function wa(a,b){a._bInitComplete=!0;(b||a.oInit.aaData)&&Z(a);A(a,null,"plugin-init",[a,b]);A(a,"aoInitComplete","init",[a,b])}function Ua(a,b){b=parseInt(b,10);a._iDisplayLength=b;Va(a);A(a,null,"length",[a,b])}function sb(a){var b=a.oClasses,c=a.sTableId,d=a.aLengthMenu,e=f.isArray(d[0]),h=e?d[0]:d;d=e?d[1]:d;e=f("<select/>",{name:c+"_length","aria-controls":c,"class":b.sLengthSelect});for(var g=0,k=h.length;g<k;g++)e[0][g]=new Option("number"===typeof d[g]?a.fnFormatNumber(d[g]):d[g],h[g]); | ||||
|         var l=f("<div><label/></div>").addClass(b.sLength);a.aanFeatures.l||(l[0].id=c+"_length");l.children().append(a.oLanguage.sLengthMenu.replace("_MENU_",e[0].outerHTML));f("select",l).val(a._iDisplayLength).on("change.DT",function(b){Ua(a,f(this).val());S(a)});f(a.nTable).on("length.dt.DT",function(b,c,d){a===c&&f("select",l).val(d)});return l[0]}function xb(a){var b=a.sPaginationType,c=q.ext.pager[b],d="function"===typeof c,e=function(a){S(a)};b=f("<div/>").addClass(a.oClasses.sPaging+b)[0];var h= | ||||
|         a.aanFeatures;d||c.fnInit(a,b,e);h.p||(b.id=a.sTableId+"_paginate",a.aoDrawCallback.push({fn:function(a){if(d){var b=a._iDisplayStart,g=a._iDisplayLength,f=a.fnRecordsDisplay(),p=-1===g;b=p?0:Math.ceil(b/g);g=p?1:Math.ceil(f/g);f=c(b,g);var n;p=0;for(n=h.p.length;p<n;p++)Qa(a,"pageButton")(a,h.p[p],p,f,b,g)}else c.fnUpdate(a,e)},sName:"pagination"}));return b}function Wa(a,b,c){var d=a._iDisplayStart,e=a._iDisplayLength,h=a.fnRecordsDisplay();0===h||-1===e?d=0:"number"===typeof b?(d=b*e,d>h&&(d=0)): | ||||
|         "first"==b?d=0:"previous"==b?(d=0<=e?d-e:0,0>d&&(d=0)):"next"==b?d+e<h&&(d+=e):"last"==b?d=Math.floor((h-1)/e)*e:O(a,0,"Unknown paging action: "+b,5);b=a._iDisplayStart!==d;a._iDisplayStart=d;b&&(A(a,null,"page",[a]),c&&S(a));return b}function ub(a){return f("<div/>",{id:a.aanFeatures.r?null:a.sTableId+"_processing","class":a.oClasses.sProcessing}).html(a.oLanguage.sProcessing).insertBefore(a.nTable)[0]}function J(a,b){a.oFeatures.bProcessing&&f(a.aanFeatures.r).css("display",b?"block":"none");A(a, | ||||
|         null,"processing",[a,b])}function vb(a){var b=f(a.nTable);b.attr("role","grid");var c=a.oScroll;if(""===c.sX&&""===c.sY)return a.nTable;var d=c.sX,e=c.sY,h=a.oClasses,g=b.children("caption"),k=g.length?g[0]._captionSide:null,l=f(b[0].cloneNode(!1)),m=f(b[0].cloneNode(!1)),p=b.children("tfoot");p.length||(p=null);l=f("<div/>",{"class":h.sScrollWrapper}).append(f("<div/>",{"class":h.sScrollHead}).css({overflow:"hidden",position:"relative",border:0,width:d?d?B(d):null:"100%"}).append(f("<div/>",{"class":h.sScrollHeadInner}).css({"box-sizing":"content-box", | ||||
|         width:c.sXInner||"100%"}).append(l.removeAttr("id").css("margin-left",0).append("top"===k?g:null).append(b.children("thead"))))).append(f("<div/>",{"class":h.sScrollBody}).css({position:"relative",overflow:"auto",width:d?B(d):null}).append(b));p&&l.append(f("<div/>",{"class":h.sScrollFoot}).css({overflow:"hidden",border:0,width:d?d?B(d):null:"100%"}).append(f("<div/>",{"class":h.sScrollFootInner}).append(m.removeAttr("id").css("margin-left",0).append("bottom"===k?g:null).append(b.children("tfoot"))))); | ||||
|         b=l.children();var n=b[0];h=b[1];var u=p?b[2]:null;if(d)f(h).on("scroll.DT",function(a){a=this.scrollLeft;n.scrollLeft=a;p&&(u.scrollLeft=a)});f(h).css("max-height",e);c.bCollapse||f(h).css("height",e);a.nScrollHead=n;a.nScrollBody=h;a.nScrollFoot=u;a.aoDrawCallback.push({fn:ma,sName:"scrolling"});return l[0]}function ma(a){var b=a.oScroll,c=b.sX,d=b.sXInner,e=b.sY;b=b.iBarWidth;var h=f(a.nScrollHead),g=h[0].style,k=h.children("div"),l=k[0].style,m=k.children("table");k=a.nScrollBody;var p=f(k),v= | ||||
|         k.style,u=f(a.nScrollFoot).children("div"),q=u.children("table"),t=f(a.nTHead),r=f(a.nTable),x=r[0],ya=x.style,w=a.nTFoot?f(a.nTFoot):null,y=a.oBrowser,A=y.bScrollOversize,ac=K(a.aoColumns,"nTh"),Xa=[],z=[],C=[],G=[],H,I=function(a){a=a.style;a.paddingTop="0";a.paddingBottom="0";a.borderTopWidth="0";a.borderBottomWidth="0";a.height=0};var D=k.scrollHeight>k.clientHeight;if(a.scrollBarVis!==D&&a.scrollBarVis!==n)a.scrollBarVis=D,Z(a);else{a.scrollBarVis=D;r.children("thead, tfoot").remove();if(w){var E= | ||||
|         w.clone().prependTo(r);var F=w.find("tr");E=E.find("tr")}var J=t.clone().prependTo(r);t=t.find("tr");D=J.find("tr");J.find("th, td").removeAttr("tabindex");c||(v.width="100%",h[0].style.width="100%");f.each(ta(a,J),function(b,c){H=aa(a,b);c.style.width=a.aoColumns[H].sWidth});w&&N(function(a){a.style.width=""},E);h=r.outerWidth();""===c?(ya.width="100%",A&&(r.find("tbody").height()>k.offsetHeight||"scroll"==p.css("overflow-y"))&&(ya.width=B(r.outerWidth()-b)),h=r.outerWidth()):""!==d&&(ya.width=B(d), | ||||
|         h=r.outerWidth());N(I,D);N(function(a){C.push(a.innerHTML);Xa.push(B(f(a).css("width")))},D);N(function(a,b){-1!==f.inArray(a,ac)&&(a.style.width=Xa[b])},t);f(D).height(0);w&&(N(I,E),N(function(a){G.push(a.innerHTML);z.push(B(f(a).css("width")))},E),N(function(a,b){a.style.width=z[b]},F),f(E).height(0));N(function(a,b){a.innerHTML='<div class="dataTables_sizing">'+C[b]+"</div>";a.childNodes[0].style.height="0";a.childNodes[0].style.overflow="hidden";a.style.width=Xa[b]},D);w&&N(function(a,b){a.innerHTML= | ||||
|         '<div class="dataTables_sizing">'+G[b]+"</div>";a.childNodes[0].style.height="0";a.childNodes[0].style.overflow="hidden";a.style.width=z[b]},E);r.outerWidth()<h?(F=k.scrollHeight>k.offsetHeight||"scroll"==p.css("overflow-y")?h+b:h,A&&(k.scrollHeight>k.offsetHeight||"scroll"==p.css("overflow-y"))&&(ya.width=B(F-b)),""!==c&&""===d||O(a,1,"Possible column misalignment",6)):F="100%";v.width=B(F);g.width=B(F);w&&(a.nScrollFoot.style.width=B(F));!e&&A&&(v.height=B(x.offsetHeight+b));c=r.outerWidth();m[0].style.width= | ||||
|         B(c);l.width=B(c);d=r.height()>k.clientHeight||"scroll"==p.css("overflow-y");e="padding"+(y.bScrollbarLeft?"Left":"Right");l[e]=d?b+"px":"0px";w&&(q[0].style.width=B(c),u[0].style.width=B(c),u[0].style[e]=d?b+"px":"0px");r.children("colgroup").insertBefore(r.children("thead"));p.trigger("scroll");!a.bSorted&&!a.bFiltered||a._drawHold||(k.scrollTop=0)}}function N(a,b,c){for(var d=0,e=0,h=b.length,g,k;e<h;){g=b[e].firstChild;for(k=c?c[e].firstChild:null;g;)1===g.nodeType&&(c?a(g,k,d):a(g,d),d++),g= | ||||
|         g.nextSibling,k=c?k.nextSibling:null;e++}}function Ia(a){var b=a.nTable,c=a.aoColumns,d=a.oScroll,e=d.sY,h=d.sX,g=d.sXInner,k=c.length,l=na(a,"bVisible"),m=f("th",a.nTHead),p=b.getAttribute("width"),n=b.parentNode,u=!1,q,t=a.oBrowser;d=t.bScrollOversize;(q=b.style.width)&&-1!==q.indexOf("%")&&(p=q);for(q=0;q<l.length;q++){var r=c[l[q]];null!==r.sWidth&&(r.sWidth=Ib(r.sWidthOrig,n),u=!0)}if(d||!u&&!h&&!e&&k==V(a)&&k==m.length)for(q=0;q<k;q++)l=aa(a,q),null!==l&&(c[l].sWidth=B(m.eq(q).width()));else{k= | ||||
|         f(b).clone().css("visibility","hidden").removeAttr("id");k.find("tbody tr").remove();var w=f("<tr/>").appendTo(k.find("tbody"));k.find("thead, tfoot").remove();k.append(f(a.nTHead).clone()).append(f(a.nTFoot).clone());k.find("tfoot th, tfoot td").css("width","");m=ta(a,k.find("thead")[0]);for(q=0;q<l.length;q++)r=c[l[q]],m[q].style.width=null!==r.sWidthOrig&&""!==r.sWidthOrig?B(r.sWidthOrig):"",r.sWidthOrig&&h&&f(m[q]).append(f("<div/>").css({width:r.sWidthOrig,margin:0,padding:0,border:0,height:1})); | ||||
|         if(a.aoData.length)for(q=0;q<l.length;q++)u=l[q],r=c[u],f(Jb(a,u)).clone(!1).append(r.sContentPadding).appendTo(w);f("[name]",k).removeAttr("name");r=f("<div/>").css(h||e?{position:"absolute",top:0,left:0,height:1,right:0,overflow:"hidden"}:{}).append(k).appendTo(n);h&&g?k.width(g):h?(k.css("width","auto"),k.removeAttr("width"),k.width()<n.clientWidth&&p&&k.width(n.clientWidth)):e?k.width(n.clientWidth):p&&k.width(p);for(q=e=0;q<l.length;q++)n=f(m[q]),g=n.outerWidth()-n.width(),n=t.bBounding?Math.ceil(m[q].getBoundingClientRect().width): | ||||
|             n.outerWidth(),e+=n,c[l[q]].sWidth=B(n-g);b.style.width=B(e);r.remove()}p&&(b.style.width=B(p));!p&&!h||a._reszEvt||(b=function(){f(y).on("resize.DT-"+a.sInstance,Ra(function(){Z(a)}))},d?setTimeout(b,1E3):b(),a._reszEvt=!0)}function Ib(a,b){if(!a)return 0;a=f("<div/>").css("width",B(a)).appendTo(b||w.body);b=a[0].offsetWidth;a.remove();return b}function Jb(a,b){var c=Kb(a,b);if(0>c)return null;var d=a.aoData[c];return d.nTr?d.anCells[b]:f("<td/>").html(F(a,c,b,"display"))[0]}function Kb(a,b){for(var c, | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       d=-1,e=-1,h=0,g=a.aoData.length;h<g;h++)c=F(a,h,b,"display")+"",c=c.replace(bc,""),c=c.replace(/ /g," "),c.length>d&&(d=c.length,e=h);return e}function B(a){return null===a?"0px":"number"==typeof a?0>a?"0px":a+"px":a.match(/\d$/)?a+"px":a}function X(a){var b=[],c=a.aoColumns;var d=a.aaSortingFixed;var e=f.isPlainObject(d);var h=[];var g=function(a){a.length&&!f.isArray(a[0])?h.push(a):f.merge(h,a)};f.isArray(d)&&g(d);e&&d.pre&&g(d.pre);g(a.aaSorting);e&&d.post&&g(d.post);for(a=0;a<h.length;a++){var k= | ||||
|         h[a][0];g=c[k].aDataSort;d=0;for(e=g.length;d<e;d++){var l=g[d];var m=c[l].sType||"string";h[a]._idx===n&&(h[a]._idx=f.inArray(h[a][1],c[l].asSorting));b.push({src:k,col:l,dir:h[a][1],index:h[a]._idx,type:m,formatter:q.ext.type.order[m+"-pre"]})}}return b}function qb(a){var b,c=[],d=q.ext.type.order,e=a.aoData,h=0,g=a.aiDisplayMaster;Ja(a);var k=X(a);var f=0;for(b=k.length;f<b;f++){var m=k[f];m.formatter&&h++;Lb(a,m.col)}if("ssp"!=I(a)&&0!==k.length){f=0;for(b=g.length;f<b;f++)c[g[f]]=f;h===k.length? | ||||
|         g.sort(function(a,b){var d,h=k.length,g=e[a]._aSortData,f=e[b]._aSortData;for(d=0;d<h;d++){var l=k[d];var m=g[l.col];var p=f[l.col];m=m<p?-1:m>p?1:0;if(0!==m)return"asc"===l.dir?m:-m}m=c[a];p=c[b];return m<p?-1:m>p?1:0}):g.sort(function(a,b){var h,g=k.length,f=e[a]._aSortData,l=e[b]._aSortData;for(h=0;h<g;h++){var m=k[h];var p=f[m.col];var n=l[m.col];m=d[m.type+"-"+m.dir]||d["string-"+m.dir];p=m(p,n);if(0!==p)return p}p=c[a];n=c[b];return p<n?-1:p>n?1:0})}a.bSorted=!0}function Mb(a){var b=a.aoColumns, | ||||
|         c=X(a);a=a.oLanguage.oAria;for(var d=0,e=b.length;d<e;d++){var h=b[d];var g=h.asSorting;var k=h.sTitle.replace(/<.*?>/g,"");var f=h.nTh;f.removeAttribute("aria-sort");h.bSortable&&(0<c.length&&c[0].col==d?(f.setAttribute("aria-sort","asc"==c[0].dir?"ascending":"descending"),h=g[c[0].index+1]||g[0]):h=g[0],k+="asc"===h?a.sSortAscending:a.sSortDescending);f.setAttribute("aria-label",k)}}function Ya(a,b,c,d){var e=a.aaSorting,h=a.aoColumns[b].asSorting,g=function(a,b){var c=a._idx;c===n&&(c=f.inArray(a[1], | ||||
|         h));return c+1<h.length?c+1:b?null:0};"number"===typeof e[0]&&(e=a.aaSorting=[e]);c&&a.oFeatures.bSortMulti?(c=f.inArray(b,K(e,"0")),-1!==c?(b=g(e[c],!0),null===b&&1===e.length&&(b=0),null===b?e.splice(c,1):(e[c][1]=h[b],e[c]._idx=b)):(e.push([b,h[0],0]),e[e.length-1]._idx=0)):e.length&&e[0][0]==b?(b=g(e[0]),e.length=1,e[0][1]=h[b],e[0]._idx=b):(e.length=0,e.push([b,h[0]]),e[0]._idx=0);U(a);"function"==typeof d&&d(a)}function Pa(a,b,c,d){var e=a.aoColumns[c];Za(b,{},function(b){!1!==e.bSortable&& | ||||
|     (a.oFeatures.bProcessing?(J(a,!0),setTimeout(function(){Ya(a,c,b.shiftKey,d);"ssp"!==I(a)&&J(a,!1)},0)):Ya(a,c,b.shiftKey,d))})}function za(a){var b=a.aLastSort,c=a.oClasses.sSortColumn,d=X(a),e=a.oFeatures,h;if(e.bSort&&e.bSortClasses){e=0;for(h=b.length;e<h;e++){var g=b[e].src;f(K(a.aoData,"anCells",g)).removeClass(c+(2>e?e+1:3))}e=0;for(h=d.length;e<h;e++)g=d[e].src,f(K(a.aoData,"anCells",g)).addClass(c+(2>e?e+1:3))}a.aLastSort=d}function Lb(a,b){var c=a.aoColumns[b],d=q.ext.order[c.sSortDataType], | ||||
|         e;d&&(e=d.call(a.oInstance,a,b,ba(a,b)));for(var h,g=q.ext.type.order[c.sType+"-pre"],f=0,l=a.aoData.length;f<l;f++)if(c=a.aoData[f],c._aSortData||(c._aSortData=[]),!c._aSortData[b]||d)h=d?e[f]:F(a,f,b,"sort"),c._aSortData[b]=g?g(h):h}function Aa(a){if(a.oFeatures.bStateSave&&!a.bDestroying){var b={time:+new Date,start:a._iDisplayStart,length:a._iDisplayLength,order:f.extend(!0,[],a.aaSorting),search:Eb(a.oPreviousSearch),columns:f.map(a.aoColumns,function(b,d){return{visible:b.bVisible,search:Eb(a.aoPreSearchCols[d])}})}; | ||||
|         A(a,"aoStateSaveParams","stateSaveParams",[a,b]);a.oSavedState=b;a.fnStateSaveCallback.call(a.oInstance,a,b)}}function Nb(a,b,c){var d,e,h=a.aoColumns;b=function(b){if(b&&b.time){var g=A(a,"aoStateLoadParams","stateLoadParams",[a,b]);if(-1===f.inArray(!1,g)&&(g=a.iStateDuration,!(0<g&&b.time<+new Date-1E3*g||b.columns&&h.length!==b.columns.length))){a.oLoadedState=f.extend(!0,{},b);b.start!==n&&(a._iDisplayStart=b.start,a.iInitDisplayStart=b.start);b.length!==n&&(a._iDisplayLength=b.length);b.order!== | ||||
|     n&&(a.aaSorting=[],f.each(b.order,function(b,c){a.aaSorting.push(c[0]>=h.length?[0,c[1]]:c)}));b.search!==n&&f.extend(a.oPreviousSearch,Fb(b.search));if(b.columns)for(d=0,e=b.columns.length;d<e;d++)g=b.columns[d],g.visible!==n&&(h[d].bVisible=g.visible),g.search!==n&&f.extend(a.aoPreSearchCols[d],Fb(g.search));A(a,"aoStateLoaded","stateLoaded",[a,b])}}c()};if(a.oFeatures.bStateSave){var g=a.fnStateLoadCallback.call(a.oInstance,a,b);g!==n&&b(g)}else c()}function Ba(a){var b=q.settings;a=f.inArray(a, | ||||
|         K(b,"nTable"));return-1!==a?b[a]:null}function O(a,b,c,d){c="DataTables warning: "+(a?"table id="+a.sTableId+" - ":"")+c;d&&(c+=". For more information about this error, please see http://datatables.net/tn/"+d);if(b)y.console&&console.log&&console.log(c);else if(b=q.ext,b=b.sErrMode||b.errMode,a&&A(a,null,"error",[a,d,c]),"alert"==b)alert(c);else{if("throw"==b)throw Error(c);"function"==typeof b&&b(a,d,c)}}function M(a,b,c,d){f.isArray(c)?f.each(c,function(c,d){f.isArray(d)?M(a,b,d[0],d[1]):M(a,b, | ||||
|         d)}):(d===n&&(d=c),b[c]!==n&&(a[d]=b[c]))}function $a(a,b,c){var d;for(d in b)if(b.hasOwnProperty(d)){var e=b[d];f.isPlainObject(e)?(f.isPlainObject(a[d])||(a[d]={}),f.extend(!0,a[d],e)):c&&"data"!==d&&"aaData"!==d&&f.isArray(e)?a[d]=e.slice():a[d]=e}return a}function Za(a,b,c){f(a).on("click.DT",b,function(b){f(a).trigger("blur");c(b)}).on("keypress.DT",b,function(a){13===a.which&&(a.preventDefault(),c(a))}).on("selectstart.DT",function(){return!1})}function D(a,b,c,d){c&&a[b].push({fn:c,sName:d})} | ||||
|     function A(a,b,c,d){var e=[];b&&(e=f.map(a[b].slice().reverse(),function(b,c){return b.fn.apply(a.oInstance,d)}));null!==c&&(b=f.Event(c+".dt"),f(a.nTable).trigger(b,d),e.push(b.result));return e}function Va(a){var b=a._iDisplayStart,c=a.fnDisplayEnd(),d=a._iDisplayLength;b>=c&&(b=c-d);b-=b%d;if(-1===d||0>b)b=0;a._iDisplayStart=b}function Qa(a,b){a=a.renderer;var c=q.ext.renderer[b];return f.isPlainObject(a)&&a[b]?c[a[b]]||c._:"string"===typeof a?c[a]||c._:c._}function I(a){return a.oFeatures.bServerSide? | ||||
|         "ssp":a.ajax||a.sAjaxSource?"ajax":"dom"}function ja(a,b){var c=Ob.numbers_length,d=Math.floor(c/2);b<=c?a=Y(0,b):a<=d?(a=Y(0,c-2),a.push("ellipsis"),a.push(b-1)):(a>=b-1-d?a=Y(b-(c-2),b):(a=Y(a-d+2,a+d-1),a.push("ellipsis"),a.push(b-1)),a.splice(0,0,"ellipsis"),a.splice(0,0,0));a.DT_el="span";return a}function Ga(a){f.each({num:function(b){return Ca(b,a)},"num-fmt":function(b){return Ca(b,a,ab)},"html-num":function(b){return Ca(b,a,Da)},"html-num-fmt":function(b){return Ca(b,a,Da,ab)}},function(b, | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              c){C.type.order[b+a+"-pre"]=c;b.match(/^html\-/)&&(C.type.search[b+a]=C.type.search.html)})}function Pb(a){return function(){var b=[Ba(this[q.ext.iApiIndex])].concat(Array.prototype.slice.call(arguments));return q.ext.internal[a].apply(this,b)}}var q=function(a){this.$=function(a,b){return this.api(!0).$(a,b)};this._=function(a,b){return this.api(!0).rows(a,b).data()};this.api=function(a){return a?new x(Ba(this[C.iApiIndex])):new x(this)};this.fnAddData=function(a,b){var c=this.api(!0);a=f.isArray(a)&& | ||||
|     (f.isArray(a[0])||f.isPlainObject(a[0]))?c.rows.add(a):c.row.add(a);(b===n||b)&&c.draw();return a.flatten().toArray()};this.fnAdjustColumnSizing=function(a){var b=this.api(!0).columns.adjust(),c=b.settings()[0],d=c.oScroll;a===n||a?b.draw(!1):(""!==d.sX||""!==d.sY)&&ma(c)};this.fnClearTable=function(a){var b=this.api(!0).clear();(a===n||a)&&b.draw()};this.fnClose=function(a){this.api(!0).row(a).child.hide()};this.fnDeleteRow=function(a,b,c){var d=this.api(!0);a=d.rows(a);var e=a.settings()[0],h=e.aoData[a[0][0]]; | ||||
|         a.remove();b&&b.call(this,e,h);(c===n||c)&&d.draw();return h};this.fnDestroy=function(a){this.api(!0).destroy(a)};this.fnDraw=function(a){this.api(!0).draw(a)};this.fnFilter=function(a,b,c,d,e,f){e=this.api(!0);null===b||b===n?e.search(a,c,d,f):e.column(b).search(a,c,d,f);e.draw()};this.fnGetData=function(a,b){var c=this.api(!0);if(a!==n){var d=a.nodeName?a.nodeName.toLowerCase():"";return b!==n||"td"==d||"th"==d?c.cell(a,b).data():c.row(a).data()||null}return c.data().toArray()};this.fnGetNodes= | ||||
|         function(a){var b=this.api(!0);return a!==n?b.row(a).node():b.rows().nodes().flatten().toArray()};this.fnGetPosition=function(a){var b=this.api(!0),c=a.nodeName.toUpperCase();return"TR"==c?b.row(a).index():"TD"==c||"TH"==c?(a=b.cell(a).index(),[a.row,a.columnVisible,a.column]):null};this.fnIsOpen=function(a){return this.api(!0).row(a).child.isShown()};this.fnOpen=function(a,b,c){return this.api(!0).row(a).child(b,c).show().child()[0]};this.fnPageChange=function(a,b){a=this.api(!0).page(a);(b===n|| | ||||
|         b)&&a.draw(!1)};this.fnSetColumnVis=function(a,b,c){a=this.api(!0).column(a).visible(b);(c===n||c)&&a.columns.adjust().draw()};this.fnSettings=function(){return Ba(this[C.iApiIndex])};this.fnSort=function(a){this.api(!0).order(a).draw()};this.fnSortListener=function(a,b,c){this.api(!0).order.listener(a,b,c)};this.fnUpdate=function(a,b,c,d,e){var h=this.api(!0);c===n||null===c?h.row(b).data(a):h.cell(b,c).data(a);(e===n||e)&&h.columns.adjust();(d===n||d)&&h.draw();return 0};this.fnVersionCheck=C.fnVersionCheck; | ||||
|         var b=this,c=a===n,d=this.length;c&&(a={});this.oApi=this.internal=C.internal;for(var e in q.ext.internal)e&&(this[e]=Pb(e));this.each(function(){var e={},g=1<d?$a(e,a,!0):a,k=0,l;e=this.getAttribute("id");var m=!1,p=q.defaults,v=f(this);if("table"!=this.nodeName.toLowerCase())O(null,0,"Non-table node initialisation ("+this.nodeName+")",2);else{ib(p);jb(p.column);L(p,p,!0);L(p.column,p.column,!0);L(p,f.extend(g,v.data()),!0);var u=q.settings;k=0;for(l=u.length;k<l;k++){var t=u[k];if(t.nTable==this|| | ||||
|             t.nTHead&&t.nTHead.parentNode==this||t.nTFoot&&t.nTFoot.parentNode==this){var w=g.bRetrieve!==n?g.bRetrieve:p.bRetrieve;if(c||w)return t.oInstance;if(g.bDestroy!==n?g.bDestroy:p.bDestroy){t.oInstance.fnDestroy();break}else{O(t,0,"Cannot reinitialise DataTable",3);return}}if(t.sTableId==this.id){u.splice(k,1);break}}if(null===e||""===e)this.id=e="DataTables_Table_"+q.ext._unique++;var r=f.extend(!0,{},q.models.oSettings,{sDestroyWidth:v[0].style.width,sInstance:e,sTableId:e});r.nTable=this;r.oApi= | ||||
|             b.internal;r.oInit=g;u.push(r);r.oInstance=1===b.length?b:v.dataTable();ib(g);Fa(g.oLanguage);g.aLengthMenu&&!g.iDisplayLength&&(g.iDisplayLength=f.isArray(g.aLengthMenu[0])?g.aLengthMenu[0][0]:g.aLengthMenu[0]);g=$a(f.extend(!0,{},p),g);M(r.oFeatures,g,"bPaginate bLengthChange bFilter bSort bSortMulti bInfo bProcessing bAutoWidth bSortClasses bServerSide bDeferRender".split(" "));M(r,g,["asStripeClasses","ajax","fnServerData","fnFormatNumber","sServerMethod","aaSorting","aaSortingFixed","aLengthMenu", | ||||
|             "sPaginationType","sAjaxSource","sAjaxDataProp","iStateDuration","sDom","bSortCellsTop","iTabIndex","fnStateLoadCallback","fnStateSaveCallback","renderer","searchDelay","rowId",["iCookieDuration","iStateDuration"],["oSearch","oPreviousSearch"],["aoSearchCols","aoPreSearchCols"],["iDisplayLength","_iDisplayLength"]]);M(r.oScroll,g,[["sScrollX","sX"],["sScrollXInner","sXInner"],["sScrollY","sY"],["bScrollCollapse","bCollapse"]]);M(r.oLanguage,g,"fnInfoCallback");D(r,"aoDrawCallback",g.fnDrawCallback, | ||||
|             "user");D(r,"aoServerParams",g.fnServerParams,"user");D(r,"aoStateSaveParams",g.fnStateSaveParams,"user");D(r,"aoStateLoadParams",g.fnStateLoadParams,"user");D(r,"aoStateLoaded",g.fnStateLoaded,"user");D(r,"aoRowCallback",g.fnRowCallback,"user");D(r,"aoRowCreatedCallback",g.fnCreatedRow,"user");D(r,"aoHeaderCallback",g.fnHeaderCallback,"user");D(r,"aoFooterCallback",g.fnFooterCallback,"user");D(r,"aoInitComplete",g.fnInitComplete,"user");D(r,"aoPreDrawCallback",g.fnPreDrawCallback,"user");r.rowIdFn= | ||||
|             T(g.rowId);kb(r);var x=r.oClasses;f.extend(x,q.ext.classes,g.oClasses);v.addClass(x.sTable);r.iInitDisplayStart===n&&(r.iInitDisplayStart=g.iDisplayStart,r._iDisplayStart=g.iDisplayStart);null!==g.iDeferLoading&&(r.bDeferLoading=!0,e=f.isArray(g.iDeferLoading),r._iRecordsDisplay=e?g.iDeferLoading[0]:g.iDeferLoading,r._iRecordsTotal=e?g.iDeferLoading[1]:g.iDeferLoading);var y=r.oLanguage;f.extend(!0,y,g.oLanguage);y.sUrl&&(f.ajax({dataType:"json",url:y.sUrl,success:function(a){Fa(a);L(p.oLanguage, | ||||
|                 a);f.extend(!0,y,a);ia(r)},error:function(){ia(r)}}),m=!0);null===g.asStripeClasses&&(r.asStripeClasses=[x.sStripeOdd,x.sStripeEven]);e=r.asStripeClasses;var z=v.children("tbody").find("tr").eq(0);-1!==f.inArray(!0,f.map(e,function(a,b){return z.hasClass(a)}))&&(f("tbody tr",this).removeClass(e.join(" ")),r.asDestroyStripes=e.slice());e=[];u=this.getElementsByTagName("thead");0!==u.length&&(ea(r.aoHeader,u[0]),e=ta(r));if(null===g.aoColumns)for(u=[],k=0,l=e.length;k<l;k++)u.push(null);else u=g.aoColumns; | ||||
|             k=0;for(l=u.length;k<l;k++)Ha(r,e?e[k]:null);mb(r,g.aoColumnDefs,u,function(a,b){la(r,a,b)});if(z.length){var B=function(a,b){return null!==a.getAttribute("data-"+b)?b:null};f(z[0]).children("th, td").each(function(a,b){var c=r.aoColumns[a];if(c.mData===a){var d=B(b,"sort")||B(b,"order");b=B(b,"filter")||B(b,"search");if(null!==d||null!==b)c.mData={_:a+".display",sort:null!==d?a+".@data-"+d:n,type:null!==d?a+".@data-"+d:n,filter:null!==b?a+".@data-"+b:n},la(r,a)}})}var C=r.oFeatures;e=function(){if(g.aaSorting=== | ||||
|                 n){var a=r.aaSorting;k=0;for(l=a.length;k<l;k++)a[k][1]=r.aoColumns[k].asSorting[0]}za(r);C.bSort&&D(r,"aoDrawCallback",function(){if(r.bSorted){var a=X(r),b={};f.each(a,function(a,c){b[c.src]=c.dir});A(r,null,"order",[r,a,b]);Mb(r)}});D(r,"aoDrawCallback",function(){(r.bSorted||"ssp"===I(r)||C.bDeferRender)&&za(r)},"sc");a=v.children("caption").each(function(){this._captionSide=f(this).css("caption-side")});var b=v.children("thead");0===b.length&&(b=f("<thead/>").appendTo(v));r.nTHead=b[0];b=v.children("tbody"); | ||||
|                 0===b.length&&(b=f("<tbody/>").appendTo(v));r.nTBody=b[0];b=v.children("tfoot");0===b.length&&0<a.length&&(""!==r.oScroll.sX||""!==r.oScroll.sY)&&(b=f("<tfoot/>").appendTo(v));0===b.length||0===b.children().length?v.addClass(x.sNoFooter):0<b.length&&(r.nTFoot=b[0],ea(r.aoFooter,r.nTFoot));if(g.aaData)for(k=0;k<g.aaData.length;k++)R(r,g.aaData[k]);else(r.bDeferLoading||"dom"==I(r))&&oa(r,f(r.nTBody).children("tr"));r.aiDisplay=r.aiDisplayMaster.slice();r.bInitialised=!0;!1===m&&ia(r)};g.bStateSave? | ||||
|                 (C.bStateSave=!0,D(r,"aoDrawCallback",Aa,"state_save"),Nb(r,g,e)):e()}});b=null;return this},C,t,z,bb={},Qb=/[\r\n\u2028]/g,Da=/<.*?>/g,cc=/^\d{2,4}[\.\/\-]\d{1,2}[\.\/\-]\d{1,2}([T ]{1}\d{1,2}[:\.]\d{2}([\.:]\d{2})?)?$/,dc=/(\/|\.|\*|\+|\?|\||\(|\)|\[|\]|\{|\}|\\|\$|\^|\-)/g,ab=/[',$£€¥%\u2009\u202F\u20BD\u20a9\u20BArfkɃΞ]/gi,P=function(a){return a&&!0!==a&&"-"!==a?!1:!0},Rb=function(a){var b=parseInt(a,10);return!isNaN(b)&&isFinite(a)?b:null},Sb=function(a,b){bb[b]||(bb[b]=new RegExp(Ta(b),"g")); | ||||
|         return"string"===typeof a&&"."!==b?a.replace(/\./g,"").replace(bb[b],"."):a},cb=function(a,b,c){var d="string"===typeof a;if(P(a))return!0;b&&d&&(a=Sb(a,b));c&&d&&(a=a.replace(ab,""));return!isNaN(parseFloat(a))&&isFinite(a)},Tb=function(a,b,c){return P(a)?!0:P(a)||"string"===typeof a?cb(a.replace(Da,""),b,c)?!0:null:null},K=function(a,b,c){var d=[],e=0,h=a.length;if(c!==n)for(;e<h;e++)a[e]&&a[e][b]&&d.push(a[e][b][c]);else for(;e<h;e++)a[e]&&d.push(a[e][b]);return d},ka=function(a,b,c,d){var e=[], | ||||
|         h=0,g=b.length;if(d!==n)for(;h<g;h++)a[b[h]][c]&&e.push(a[b[h]][c][d]);else for(;h<g;h++)e.push(a[b[h]][c]);return e},Y=function(a,b){var c=[];if(b===n){b=0;var d=a}else d=b,b=a;for(a=b;a<d;a++)c.push(a);return c},Ub=function(a){for(var b=[],c=0,d=a.length;c<d;c++)a[c]&&b.push(a[c]);return b},sa=function(a){a:{if(!(2>a.length)){var b=a.slice().sort();for(var c=b[0],d=1,e=b.length;d<e;d++){if(b[d]===c){b=!1;break a}c=b[d]}}b=!0}if(b)return a.slice();b=[];e=a.length;var h,g=0;d=0;a:for(;d<e;d++){c= | ||||
|         a[d];for(h=0;h<g;h++)if(b[h]===c)continue a;b.push(c);g++}return b};q.util={throttle:function(a,b){var c=b!==n?b:200,d,e;return function(){var b=this,g=+new Date,f=arguments;d&&g<d+c?(clearTimeout(e),e=setTimeout(function(){d=n;a.apply(b,f)},c)):(d=g,a.apply(b,f))}},escapeRegex:function(a){return a.replace(dc,"\\$1")}};var E=function(a,b,c){a[b]!==n&&(a[c]=a[b])},ca=/\[.*?\]$/,W=/\(\)$/,Ta=q.util.escapeRegex,xa=f("<div>")[0],$b=xa.textContent!==n,bc=/<.*?>/g,Ra=q.util.throttle,Vb=[],G=Array.prototype, | ||||
|         ec=function(a){var b,c=q.settings,d=f.map(c,function(a,b){return a.nTable});if(a){if(a.nTable&&a.oApi)return[a];if(a.nodeName&&"table"===a.nodeName.toLowerCase()){var e=f.inArray(a,d);return-1!==e?[c[e]]:null}if(a&&"function"===typeof a.settings)return a.settings().toArray();"string"===typeof a?b=f(a):a instanceof f&&(b=a)}else return[];if(b)return b.map(function(a){e=f.inArray(this,d);return-1!==e?c[e]:null}).toArray()};var x=function(a,b){if(!(this instanceof x))return new x(a,b);var c=[],d=function(a){(a= | ||||
|         ec(a))&&c.push.apply(c,a)};if(f.isArray(a))for(var e=0,h=a.length;e<h;e++)d(a[e]);else d(a);this.context=sa(c);b&&f.merge(this,b);this.selector={rows:null,cols:null,opts:null};x.extend(this,this,Vb)};q.Api=x;f.extend(x.prototype,{any:function(){return 0!==this.count()},concat:G.concat,context:[],count:function(){return this.flatten().length},each:function(a){for(var b=0,c=this.length;b<c;b++)a.call(this,this[b],b,this);return this},eq:function(a){var b=this.context;return b.length>a?new x(b[a],this[a]): | ||||
|             null},filter:function(a){var b=[];if(G.filter)b=G.filter.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)a.call(this,this[c],c,this)&&b.push(this[c]);return new x(this.context,b)},flatten:function(){var a=[];return new x(this.context,a.concat.apply(a,this.toArray()))},join:G.join,indexOf:G.indexOf||function(a,b){b=b||0;for(var c=this.length;b<c;b++)if(this[b]===a)return b;return-1},iterator:function(a,b,c,d){var e=[],h,g,f=this.context,l,m=this.selector;"string"===typeof a&&(d=c,c=b,b=a, | ||||
|             a=!1);var p=0;for(h=f.length;p<h;p++){var q=new x(f[p]);if("table"===b){var u=c.call(q,f[p],p);u!==n&&e.push(u)}else if("columns"===b||"rows"===b)u=c.call(q,f[p],this[p],p),u!==n&&e.push(u);else if("column"===b||"column-rows"===b||"row"===b||"cell"===b){var t=this[p];"column-rows"===b&&(l=Ea(f[p],m.opts));var w=0;for(g=t.length;w<g;w++)u=t[w],u="cell"===b?c.call(q,f[p],u.row,u.column,p,w):c.call(q,f[p],u,p,w,l),u!==n&&e.push(u)}}return e.length||d?(a=new x(f,a?e.concat.apply([],e):e),b=a.selector, | ||||
|             b.rows=m.rows,b.cols=m.cols,b.opts=m.opts,a):this},lastIndexOf:G.lastIndexOf||function(a,b){return this.indexOf.apply(this.toArray.reverse(),arguments)},length:0,map:function(a){var b=[];if(G.map)b=G.map.call(this,a,this);else for(var c=0,d=this.length;c<d;c++)b.push(a.call(this,this[c],c));return new x(this.context,b)},pluck:function(a){return this.map(function(b){return b[a]})},pop:G.pop,push:G.push,reduce:G.reduce||function(a,b){return lb(this,a,b,0,this.length,1)},reduceRight:G.reduceRight||function(a, | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          b){return lb(this,a,b,this.length-1,-1,-1)},reverse:G.reverse,selector:null,shift:G.shift,slice:function(){return new x(this.context,this)},sort:G.sort,splice:G.splice,toArray:function(){return G.slice.call(this)},to$:function(){return f(this)},toJQuery:function(){return f(this)},unique:function(){return new x(this.context,sa(this))},unshift:G.unshift});x.extend=function(a,b,c){if(c.length&&b&&(b instanceof x||b.__dt_wrapper)){var d,e=function(a,b,c){return function(){var d=b.apply(a,arguments);x.extend(d, | ||||
|         d,c.methodExt);return d}};var h=0;for(d=c.length;h<d;h++){var f=c[h];b[f.name]="function"===f.type?e(a,f.val,f):"object"===f.type?{}:f.val;b[f.name].__dt_wrapper=!0;x.extend(a,b[f.name],f.propExt)}}};x.register=t=function(a,b){if(f.isArray(a))for(var c=0,d=a.length;c<d;c++)x.register(a[c],b);else{d=a.split(".");var e=Vb,h;a=0;for(c=d.length;a<c;a++){var g=(h=-1!==d[a].indexOf("()"))?d[a].replace("()",""):d[a];a:{var k=0;for(var l=e.length;k<l;k++)if(e[k].name===g){k=e[k];break a}k=null}k||(k={name:g, | ||||
|         val:{},methodExt:[],propExt:[],type:"object"},e.push(k));a===c-1?(k.val=b,k.type="function"===typeof b?"function":f.isPlainObject(b)?"object":"other"):e=h?k.methodExt:k.propExt}}};x.registerPlural=z=function(a,b,c){x.register(a,c);x.register(b,function(){var a=c.apply(this,arguments);return a===this?this:a instanceof x?a.length?f.isArray(a[0])?new x(a.context,a[0]):a[0]:n:a})};var Wb=function(a,b){if(f.isArray(a))return f.map(a,function(a){return Wb(a,b)});if("number"===typeof a)return[b[a]];var c= | ||||
|         f.map(b,function(a,b){return a.nTable});return f(c).filter(a).map(function(a){a=f.inArray(this,c);return b[a]}).toArray()};t("tables()",function(a){return a!==n&&null!==a?new x(Wb(a,this.context)):this});t("table()",function(a){a=this.tables(a);var b=a.context;return b.length?new x(b[0]):a});z("tables().nodes()","table().node()",function(){return this.iterator("table",function(a){return a.nTable},1)});z("tables().body()","table().body()",function(){return this.iterator("table",function(a){return a.nTBody}, | ||||
|         1)});z("tables().header()","table().header()",function(){return this.iterator("table",function(a){return a.nTHead},1)});z("tables().footer()","table().footer()",function(){return this.iterator("table",function(a){return a.nTFoot},1)});z("tables().containers()","table().container()",function(){return this.iterator("table",function(a){return a.nTableWrapper},1)});t("draw()",function(a){return this.iterator("table",function(b){"page"===a?S(b):("string"===typeof a&&(a="full-hold"===a?!1:!0),U(b,!1=== | ||||
|         a))})});t("page()",function(a){return a===n?this.page.info().page:this.iterator("table",function(b){Wa(b,a)})});t("page.info()",function(a){if(0===this.context.length)return n;a=this.context[0];var b=a._iDisplayStart,c=a.oFeatures.bPaginate?a._iDisplayLength:-1,d=a.fnRecordsDisplay(),e=-1===c;return{page:e?0:Math.floor(b/c),pages:e?1:Math.ceil(d/c),start:b,end:a.fnDisplayEnd(),length:c,recordsTotal:a.fnRecordsTotal(),recordsDisplay:d,serverSide:"ssp"===I(a)}});t("page.len()",function(a){return a=== | ||||
|     n?0!==this.context.length?this.context[0]._iDisplayLength:n:this.iterator("table",function(b){Ua(b,a)})});var Xb=function(a,b,c){if(c){var d=new x(a);d.one("draw",function(){c(d.ajax.json())})}if("ssp"==I(a))U(a,b);else{J(a,!0);var e=a.jqXHR;e&&4!==e.readyState&&e.abort();ua(a,[],function(c){pa(a);c=va(a,c);for(var d=0,e=c.length;d<e;d++)R(a,c[d]);U(a,b);J(a,!1)})}};t("ajax.json()",function(){var a=this.context;if(0<a.length)return a[0].json});t("ajax.params()",function(){var a=this.context;if(0< | ||||
|         a.length)return a[0].oAjaxData});t("ajax.reload()",function(a,b){return this.iterator("table",function(c){Xb(c,!1===b,a)})});t("ajax.url()",function(a){var b=this.context;if(a===n){if(0===b.length)return n;b=b[0];return b.ajax?f.isPlainObject(b.ajax)?b.ajax.url:b.ajax:b.sAjaxSource}return this.iterator("table",function(b){f.isPlainObject(b.ajax)?b.ajax.url=a:b.ajax=a})});t("ajax.url().load()",function(a,b){return this.iterator("table",function(c){Xb(c,!1===b,a)})});var db=function(a,b,c,d,e){var h= | ||||
|         [],g,k,l;var m=typeof b;b&&"string"!==m&&"function"!==m&&b.length!==n||(b=[b]);m=0;for(k=b.length;m<k;m++){var p=b[m]&&b[m].split&&!b[m].match(/[\[\(:]/)?b[m].split(","):[b[m]];var q=0;for(l=p.length;q<l;q++)(g=c("string"===typeof p[q]?f.trim(p[q]):p[q]))&&g.length&&(h=h.concat(g))}a=C.selector[a];if(a.length)for(m=0,k=a.length;m<k;m++)h=a[m](d,e,h);return sa(h)},eb=function(a){a||(a={});a.filter&&a.search===n&&(a.search=a.filter);return f.extend({search:"none",order:"current",page:"all"},a)},fb= | ||||
|         function(a){for(var b=0,c=a.length;b<c;b++)if(0<a[b].length)return a[0]=a[b],a[0].length=1,a.length=1,a.context=[a.context[b]],a;a.length=0;return a},Ea=function(a,b){var c=[],d=a.aiDisplay;var e=a.aiDisplayMaster;var h=b.search;var g=b.order;b=b.page;if("ssp"==I(a))return"removed"===h?[]:Y(0,e.length);if("current"==b)for(g=a._iDisplayStart,a=a.fnDisplayEnd();g<a;g++)c.push(d[g]);else if("current"==g||"applied"==g)if("none"==h)c=e.slice();else if("applied"==h)c=d.slice();else{if("removed"==h){var k= | ||||
|         {};g=0;for(a=d.length;g<a;g++)k[d[g]]=null;c=f.map(e,function(a){return k.hasOwnProperty(a)?null:a})}}else if("index"==g||"original"==g)for(g=0,a=a.aoData.length;g<a;g++)"none"==h?c.push(g):(e=f.inArray(g,d),(-1===e&&"removed"==h||0<=e&&"applied"==h)&&c.push(g));return c},fc=function(a,b,c){var d;return db("row",b,function(b){var e=Rb(b),g=a.aoData;if(null!==e&&!c)return[e];d||(d=Ea(a,c));if(null!==e&&-1!==f.inArray(e,d))return[e];if(null===b||b===n||""===b)return d;if("function"===typeof b)return f.map(d, | ||||
|         function(a){var c=g[a];return b(a,c._aData,c.nTr)?a:null});if(b.nodeName){e=b._DT_RowIndex;var k=b._DT_CellIndex;if(e!==n)return g[e]&&g[e].nTr===b?[e]:[];if(k)return g[k.row]&&g[k.row].nTr===b.parentNode?[k.row]:[];e=f(b).closest("*[data-dt-row]");return e.length?[e.data("dt-row")]:[]}if("string"===typeof b&&"#"===b.charAt(0)&&(e=a.aIds[b.replace(/^#/,"")],e!==n))return[e.idx];e=Ub(ka(a.aoData,d,"nTr"));return f(e).filter(b).map(function(){return this._DT_RowIndex}).toArray()},a,c)};t("rows()",function(a, | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      b){a===n?a="":f.isPlainObject(a)&&(b=a,a="");b=eb(b);var c=this.iterator("table",function(c){return fc(c,a,b)},1);c.selector.rows=a;c.selector.opts=b;return c});t("rows().nodes()",function(){return this.iterator("row",function(a,b){return a.aoData[b].nTr||n},1)});t("rows().data()",function(){return this.iterator(!0,"rows",function(a,b){return ka(a.aoData,b,"_aData")},1)});z("rows().cache()","row().cache()",function(a){return this.iterator("row",function(b,c){b=b.aoData[c];return"search"===a?b._aFilterData: | ||||
|         b._aSortData},1)});z("rows().invalidate()","row().invalidate()",function(a){return this.iterator("row",function(b,c){da(b,c,a)})});z("rows().indexes()","row().index()",function(){return this.iterator("row",function(a,b){return b},1)});z("rows().ids()","row().id()",function(a){for(var b=[],c=this.context,d=0,e=c.length;d<e;d++)for(var f=0,g=this[d].length;f<g;f++){var k=c[d].rowIdFn(c[d].aoData[this[d][f]]._aData);b.push((!0===a?"#":"")+k)}return new x(c,b)});z("rows().remove()","row().remove()",function(){var a= | ||||
|         this;this.iterator("row",function(b,c,d){var e=b.aoData,f=e[c],g,k;e.splice(c,1);var l=0;for(g=e.length;l<g;l++){var m=e[l];var p=m.anCells;null!==m.nTr&&(m.nTr._DT_RowIndex=l);if(null!==p)for(m=0,k=p.length;m<k;m++)p[m]._DT_CellIndex.row=l}qa(b.aiDisplayMaster,c);qa(b.aiDisplay,c);qa(a[d],c,!1);0<b._iRecordsDisplay&&b._iRecordsDisplay--;Va(b);c=b.rowIdFn(f._aData);c!==n&&delete b.aIds[c]});this.iterator("table",function(a){for(var b=0,d=a.aoData.length;b<d;b++)a.aoData[b].idx=b});return this});t("rows.add()", | ||||
|         function(a){var b=this.iterator("table",function(b){var c,d=[];var f=0;for(c=a.length;f<c;f++){var k=a[f];k.nodeName&&"TR"===k.nodeName.toUpperCase()?d.push(oa(b,k)[0]):d.push(R(b,k))}return d},1),c=this.rows(-1);c.pop();f.merge(c,b);return c});t("row()",function(a,b){return fb(this.rows(a,b))});t("row().data()",function(a){var b=this.context;if(a===n)return b.length&&this.length?b[0].aoData[this[0]]._aData:n;var c=b[0].aoData[this[0]];c._aData=a;f.isArray(a)&&c.nTr&&c.nTr.id&&Q(b[0].rowId)(a,c.nTr.id); | ||||
|         da(b[0],this[0],"data");return this});t("row().node()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]].nTr||null:null});t("row.add()",function(a){a instanceof f&&a.length&&(a=a[0]);var b=this.iterator("table",function(b){return a.nodeName&&"TR"===a.nodeName.toUpperCase()?oa(b,a)[0]:R(b,a)});return this.row(b[0])});var gc=function(a,b,c,d){var e=[],h=function(b,c){if(f.isArray(b)||b instanceof f)for(var d=0,g=b.length;d<g;d++)h(b[d],c);else b.nodeName&&"tr"===b.nodeName.toLowerCase()? | ||||
|         e.push(b):(d=f("<tr><td/></tr>").addClass(c),f("td",d).addClass(c).html(b)[0].colSpan=V(a),e.push(d[0]))};h(c,d);b._details&&b._details.detach();b._details=f(e);b._detailsShow&&b._details.insertAfter(b.nTr)},gb=function(a,b){var c=a.context;c.length&&(a=c[0].aoData[b!==n?b:a[0]])&&a._details&&(a._details.remove(),a._detailsShow=n,a._details=n)},Yb=function(a,b){var c=a.context;c.length&&a.length&&(a=c[0].aoData[a[0]],a._details&&((a._detailsShow=b)?a._details.insertAfter(a.nTr):a._details.detach(), | ||||
|         hc(c[0])))},hc=function(a){var b=new x(a),c=a.aoData;b.off("draw.dt.DT_details column-visibility.dt.DT_details destroy.dt.DT_details");0<K(c,"_details").length&&(b.on("draw.dt.DT_details",function(d,e){a===e&&b.rows({page:"current"}).eq(0).each(function(a){a=c[a];a._detailsShow&&a._details.insertAfter(a.nTr)})}),b.on("column-visibility.dt.DT_details",function(b,e,f,g){if(a===e)for(e=V(e),f=0,g=c.length;f<g;f++)b=c[f],b._details&&b._details.children("td[colspan]").attr("colspan",e)}),b.on("destroy.dt.DT_details", | ||||
|         function(d,e){if(a===e)for(d=0,e=c.length;d<e;d++)c[d]._details&&gb(b,d)}))};t("row().child()",function(a,b){var c=this.context;if(a===n)return c.length&&this.length?c[0].aoData[this[0]]._details:n;!0===a?this.child.show():!1===a?gb(this):c.length&&this.length&&gc(c[0],c[0].aoData[this[0]],a,b);return this});t(["row().child.show()","row().child().show()"],function(a){Yb(this,!0);return this});t(["row().child.hide()","row().child().hide()"],function(){Yb(this,!1);return this});t(["row().child.remove()", | ||||
|         "row().child().remove()"],function(){gb(this);return this});t("row().child.isShown()",function(){var a=this.context;return a.length&&this.length?a[0].aoData[this[0]]._detailsShow||!1:!1});var ic=/^([^:]+):(name|visIdx|visible)$/,Zb=function(a,b,c,d,e){c=[];d=0;for(var f=e.length;d<f;d++)c.push(F(a,e[d],b));return c},jc=function(a,b,c){var d=a.aoColumns,e=K(d,"sName"),h=K(d,"nTh");return db("column",b,function(b){var g=Rb(b);if(""===b)return Y(d.length);if(null!==g)return[0<=g?g:d.length+g];if("function"=== | ||||
|         typeof b){var l=Ea(a,c);return f.map(d,function(c,d){return b(d,Zb(a,d,0,0,l),h[d])?d:null})}var m="string"===typeof b?b.match(ic):"";if(m)switch(m[2]){case "visIdx":case "visible":g=parseInt(m[1],10);if(0>g){var p=f.map(d,function(a,b){return a.bVisible?b:null});return[p[p.length+g]]}return[aa(a,g)];case "name":return f.map(e,function(a,b){return a===m[1]?b:null});default:return[]}if(b.nodeName&&b._DT_CellIndex)return[b._DT_CellIndex.column];g=f(h).filter(b).map(function(){return f.inArray(this, | ||||
|         h)}).toArray();if(g.length||!b.nodeName)return g;g=f(b).closest("*[data-dt-column]");return g.length?[g.data("dt-column")]:[]},a,c)};t("columns()",function(a,b){a===n?a="":f.isPlainObject(a)&&(b=a,a="");b=eb(b);var c=this.iterator("table",function(c){return jc(c,a,b)},1);c.selector.cols=a;c.selector.opts=b;return c});z("columns().header()","column().header()",function(a,b){return this.iterator("column",function(a,b){return a.aoColumns[b].nTh},1)});z("columns().footer()","column().footer()",function(a, | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                 b){return this.iterator("column",function(a,b){return a.aoColumns[b].nTf},1)});z("columns().data()","column().data()",function(){return this.iterator("column-rows",Zb,1)});z("columns().dataSrc()","column().dataSrc()",function(){return this.iterator("column",function(a,b){return a.aoColumns[b].mData},1)});z("columns().cache()","column().cache()",function(a){return this.iterator("column-rows",function(b,c,d,e,f){return ka(b.aoData,f,"search"===a?"_aFilterData":"_aSortData",c)},1)});z("columns().nodes()", | ||||
|         "column().nodes()",function(){return this.iterator("column-rows",function(a,b,c,d,e){return ka(a.aoData,e,"anCells",b)},1)});z("columns().visible()","column().visible()",function(a,b){var c=this,d=this.iterator("column",function(b,c){if(a===n)return b.aoColumns[c].bVisible;var d=b.aoColumns,e=d[c],h=b.aoData,m;if(a!==n&&e.bVisible!==a){if(a){var p=f.inArray(!0,K(d,"bVisible"),c+1);d=0;for(m=h.length;d<m;d++){var q=h[d].nTr;b=h[d].anCells;q&&q.insertBefore(b[c],b[p]||null)}}else f(K(b.aoData,"anCells", | ||||
|         c)).detach();e.bVisible=a}});a!==n&&this.iterator("table",function(d){fa(d,d.aoHeader);fa(d,d.aoFooter);d.aiDisplay.length||f(d.nTBody).find("td[colspan]").attr("colspan",V(d));Aa(d);c.iterator("column",function(c,d){A(c,null,"column-visibility",[c,d,a,b])});(b===n||b)&&c.columns.adjust()});return d});z("columns().indexes()","column().index()",function(a){return this.iterator("column",function(b,c){return"visible"===a?ba(b,c):c},1)});t("columns.adjust()",function(){return this.iterator("table",function(a){Z(a)}, | ||||
|         1)});t("column.index()",function(a,b){if(0!==this.context.length){var c=this.context[0];if("fromVisible"===a||"toData"===a)return aa(c,b);if("fromData"===a||"toVisible"===a)return ba(c,b)}});t("column()",function(a,b){return fb(this.columns(a,b))});var kc=function(a,b,c){var d=a.aoData,e=Ea(a,c),h=Ub(ka(d,e,"anCells")),g=f([].concat.apply([],h)),k,l=a.aoColumns.length,m,p,q,u,t,w;return db("cell",b,function(b){var c="function"===typeof b;if(null===b||b===n||c){m=[];p=0;for(q=e.length;p<q;p++)for(k= | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  e[p],u=0;u<l;u++)t={row:k,column:u},c?(w=d[k],b(t,F(a,k,u),w.anCells?w.anCells[u]:null)&&m.push(t)):m.push(t);return m}if(f.isPlainObject(b))return b.column!==n&&b.row!==n&&-1!==f.inArray(b.row,e)?[b]:[];c=g.filter(b).map(function(a,b){return{row:b._DT_CellIndex.row,column:b._DT_CellIndex.column}}).toArray();if(c.length||!b.nodeName)return c;w=f(b).closest("*[data-dt-row]");return w.length?[{row:w.data("dt-row"),column:w.data("dt-column")}]:[]},a,c)};t("cells()",function(a,b,c){f.isPlainObject(a)&& | ||||
|     (a.row===n?(c=a,a=null):(c=b,b=null));f.isPlainObject(b)&&(c=b,b=null);if(null===b||b===n)return this.iterator("table",function(b){return kc(b,a,eb(c))});var d=c?{page:c.page,order:c.order,search:c.search}:{},e=this.columns(b,d),h=this.rows(a,d),g,k,l,m;d=this.iterator("table",function(a,b){a=[];g=0;for(k=h[b].length;g<k;g++)for(l=0,m=e[b].length;l<m;l++)a.push({row:h[b][g],column:e[b][l]});return a},1);d=c&&c.selected?this.cells(d,c):d;f.extend(d.selector,{cols:b,rows:a,opts:c});return d});z("cells().nodes()", | ||||
|         "cell().node()",function(){return this.iterator("cell",function(a,b,c){return(a=a.aoData[b])&&a.anCells?a.anCells[c]:n},1)});t("cells().data()",function(){return this.iterator("cell",function(a,b,c){return F(a,b,c)},1)});z("cells().cache()","cell().cache()",function(a){a="search"===a?"_aFilterData":"_aSortData";return this.iterator("cell",function(b,c,d){return b.aoData[c][a][d]},1)});z("cells().render()","cell().render()",function(a){return this.iterator("cell",function(b,c,d){return F(b,c,d,a)}, | ||||
|         1)});z("cells().indexes()","cell().index()",function(){return this.iterator("cell",function(a,b,c){return{row:b,column:c,columnVisible:ba(a,c)}},1)});z("cells().invalidate()","cell().invalidate()",function(a){return this.iterator("cell",function(b,c,d){da(b,c,a,d)})});t("cell()",function(a,b,c){return fb(this.cells(a,b,c))});t("cell().data()",function(a){var b=this.context,c=this[0];if(a===n)return b.length&&c.length?F(b[0],c[0].row,c[0].column):n;nb(b[0],c[0].row,c[0].column,a);da(b[0],c[0].row, | ||||
|         "data",c[0].column);return this});t("order()",function(a,b){var c=this.context;if(a===n)return 0!==c.length?c[0].aaSorting:n;"number"===typeof a?a=[[a,b]]:a.length&&!f.isArray(a[0])&&(a=Array.prototype.slice.call(arguments));return this.iterator("table",function(b){b.aaSorting=a.slice()})});t("order.listener()",function(a,b,c){return this.iterator("table",function(d){Pa(d,a,b,c)})});t("order.fixed()",function(a){if(!a){var b=this.context;b=b.length?b[0].aaSortingFixed:n;return f.isArray(b)?{pre:b}: | ||||
|         b}return this.iterator("table",function(b){b.aaSortingFixed=f.extend(!0,{},a)})});t(["columns().order()","column().order()"],function(a){var b=this;return this.iterator("table",function(c,d){var e=[];f.each(b[d],function(b,c){e.push([c,a])});c.aaSorting=e})});t("search()",function(a,b,c,d){var e=this.context;return a===n?0!==e.length?e[0].oPreviousSearch.sSearch:n:this.iterator("table",function(e){e.oFeatures.bFilter&&ha(e,f.extend({},e.oPreviousSearch,{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null=== | ||||
|         c?!0:c,bCaseInsensitive:null===d?!0:d}),1)})});z("columns().search()","column().search()",function(a,b,c,d){return this.iterator("column",function(e,h){var g=e.aoPreSearchCols;if(a===n)return g[h].sSearch;e.oFeatures.bFilter&&(f.extend(g[h],{sSearch:a+"",bRegex:null===b?!1:b,bSmart:null===c?!0:c,bCaseInsensitive:null===d?!0:d}),ha(e,e.oPreviousSearch,1))})});t("state()",function(){return this.context.length?this.context[0].oSavedState:null});t("state.clear()",function(){return this.iterator("table", | ||||
|         function(a){a.fnStateSaveCallback.call(a.oInstance,a,{})})});t("state.loaded()",function(){return this.context.length?this.context[0].oLoadedState:null});t("state.save()",function(){return this.iterator("table",function(a){Aa(a)})});q.versionCheck=q.fnVersionCheck=function(a){var b=q.version.split(".");a=a.split(".");for(var c,d,e=0,f=a.length;e<f;e++)if(c=parseInt(b[e],10)||0,d=parseInt(a[e],10)||0,c!==d)return c>d;return!0};q.isDataTable=q.fnIsDataTable=function(a){var b=f(a).get(0),c=!1;if(a instanceof | ||||
|         q.Api)return!0;f.each(q.settings,function(a,e){a=e.nScrollHead?f("table",e.nScrollHead)[0]:null;var d=e.nScrollFoot?f("table",e.nScrollFoot)[0]:null;if(e.nTable===b||a===b||d===b)c=!0});return c};q.tables=q.fnTables=function(a){var b=!1;f.isPlainObject(a)&&(b=a.api,a=a.visible);var c=f.map(q.settings,function(b){if(!a||a&&f(b.nTable).is(":visible"))return b.nTable});return b?new x(c):c};q.camelToHungarian=L;t("$()",function(a,b){b=this.rows(b).nodes();b=f(b);return f([].concat(b.filter(a).toArray(), | ||||
|         b.find(a).toArray()))});f.each(["on","one","off"],function(a,b){t(b+"()",function(){var a=Array.prototype.slice.call(arguments);a[0]=f.map(a[0].split(/\s/),function(a){return a.match(/\.dt\b/)?a:a+".dt"}).join(" ");var d=f(this.tables().nodes());d[b].apply(d,a);return this})});t("clear()",function(){return this.iterator("table",function(a){pa(a)})});t("settings()",function(){return new x(this.context,this.context)});t("init()",function(){var a=this.context;return a.length?a[0].oInit:null});t("data()", | ||||
|         function(){return this.iterator("table",function(a){return K(a.aoData,"_aData")}).flatten()});t("destroy()",function(a){a=a||!1;return this.iterator("table",function(b){var c=b.nTableWrapper.parentNode,d=b.oClasses,e=b.nTable,h=b.nTBody,g=b.nTHead,k=b.nTFoot,l=f(e);h=f(h);var m=f(b.nTableWrapper),p=f.map(b.aoData,function(a){return a.nTr}),n;b.bDestroying=!0;A(b,"aoDestroyCallback","destroy",[b]);a||(new x(b)).columns().visible(!0);m.off(".DT").find(":not(tbody *)").off(".DT");f(y).off(".DT-"+b.sInstance); | ||||
|         e!=g.parentNode&&(l.children("thead").detach(),l.append(g));k&&e!=k.parentNode&&(l.children("tfoot").detach(),l.append(k));b.aaSorting=[];b.aaSortingFixed=[];za(b);f(p).removeClass(b.asStripeClasses.join(" "));f("th, td",g).removeClass(d.sSortable+" "+d.sSortableAsc+" "+d.sSortableDesc+" "+d.sSortableNone);h.children().detach();h.append(p);g=a?"remove":"detach";l[g]();m[g]();!a&&c&&(c.insertBefore(e,b.nTableReinsertBefore),l.css("width",b.sDestroyWidth).removeClass(d.sTable),(n=b.asDestroyStripes.length)&& | ||||
|         h.children().each(function(a){f(this).addClass(b.asDestroyStripes[a%n])}));c=f.inArray(b,q.settings);-1!==c&&q.settings.splice(c,1)})});f.each(["column","row","cell"],function(a,b){t(b+"s().every()",function(a){var c=this.selector.opts,e=this;return this.iterator(b,function(d,f,k,l,m){a.call(e[b](f,"cell"===b?k:c,"cell"===b?c:n),f,k,l,m)})})});t("i18n()",function(a,b,c){var d=this.context[0];a=T(a)(d.oLanguage);a===n&&(a=b);c!==n&&f.isPlainObject(a)&&(a=a[c]!==n?a[c]:a._);return a.replace("%d",c)}); | ||||
|     q.version="1.10.21";q.settings=[];q.models={};q.models.oSearch={bCaseInsensitive:!0,sSearch:"",bRegex:!1,bSmart:!0};q.models.oRow={nTr:null,anCells:null,_aData:[],_aSortData:null,_aFilterData:null,_sFilterRow:null,_sRowStripe:"",src:null,idx:-1};q.models.oColumn={idx:null,aDataSort:null,asSorting:null,bSearchable:null,bSortable:null,bVisible:null,_sManualType:null,_bAttrSrc:!1,fnCreatedCell:null,fnGetData:null,fnSetData:null,mData:null,mRender:null,nTh:null,nTf:null,sClass:null,sContentPadding:null, | ||||
|         sDefaultContent:null,sName:null,sSortDataType:"std",sSortingClass:null,sSortingClassJUI:null,sTitle:null,sType:null,sWidth:null,sWidthOrig:null};q.defaults={aaData:null,aaSorting:[[0,"asc"]],aaSortingFixed:[],ajax:null,aLengthMenu:[10,25,50,100],aoColumns:null,aoColumnDefs:null,aoSearchCols:[],asStripeClasses:null,bAutoWidth:!0,bDeferRender:!1,bDestroy:!1,bFilter:!0,bInfo:!0,bLengthChange:!0,bPaginate:!0,bProcessing:!1,bRetrieve:!1,bScrollCollapse:!1,bServerSide:!1,bSort:!0,bSortMulti:!0,bSortCellsTop:!1, | ||||
|         bSortClasses:!0,bStateSave:!1,fnCreatedRow:null,fnDrawCallback:null,fnFooterCallback:null,fnFormatNumber:function(a){return a.toString().replace(/\B(?=(\d{3})+(?!\d))/g,this.oLanguage.sThousands)},fnHeaderCallback:null,fnInfoCallback:null,fnInitComplete:null,fnPreDrawCallback:null,fnRowCallback:null,fnServerData:null,fnServerParams:null,fnStateLoadCallback:function(a){try{return JSON.parse((-1===a.iStateDuration?sessionStorage:localStorage).getItem("DataTables_"+a.sInstance+"_"+location.pathname))}catch(b){return{}}}, | ||||
|         fnStateLoadParams:null,fnStateLoaded:null,fnStateSaveCallback:function(a,b){try{(-1===a.iStateDuration?sessionStorage:localStorage).setItem("DataTables_"+a.sInstance+"_"+location.pathname,JSON.stringify(b))}catch(c){}},fnStateSaveParams:null,iStateDuration:7200,iDeferLoading:null,iDisplayLength:10,iDisplayStart:0,iTabIndex:0,oClasses:{},oLanguage:{oAria:{sSortAscending:": activate to sort column ascending",sSortDescending:": activate to sort column descending"},oPaginate:{sFirst:"First",sLast:"Last", | ||||
|                 sNext:"Next",sPrevious:"Previous"},sEmptyTable:"No data available in table",sInfo:"Showing _START_ to _END_ of _TOTAL_ entries",sInfoEmpty:"Showing 0 to 0 of 0 entries",sInfoFiltered:"(filtered from _MAX_ total entries)",sInfoPostFix:"",sDecimal:"",sThousands:",",sLengthMenu:"Show _MENU_ entries",sLoadingRecords:"Loading...",sProcessing:"Processing...",sSearch:"Search:",sSearchPlaceholder:"",sUrl:"",sZeroRecords:"No matching records found"},oSearch:f.extend({},q.models.oSearch),sAjaxDataProp:"data", | ||||
|         sAjaxSource:null,sDom:"lfrtip",searchDelay:null,sPaginationType:"simple_numbers",sScrollX:"",sScrollXInner:"",sScrollY:"",sServerMethod:"GET",renderer:null,rowId:"DT_RowId"};H(q.defaults);q.defaults.column={aDataSort:null,iDataSort:-1,asSorting:["asc","desc"],bSearchable:!0,bSortable:!0,bVisible:!0,fnCreatedCell:null,mData:null,mRender:null,sCellType:"td",sClass:"",sContentPadding:"",sDefaultContent:null,sName:"",sSortDataType:"std",sTitle:null,sType:null,sWidth:null};H(q.defaults.column);q.models.oSettings= | ||||
|         {oFeatures:{bAutoWidth:null,bDeferRender:null,bFilter:null,bInfo:null,bLengthChange:null,bPaginate:null,bProcessing:null,bServerSide:null,bSort:null,bSortMulti:null,bSortClasses:null,bStateSave:null},oScroll:{bCollapse:null,iBarWidth:0,sX:null,sXInner:null,sY:null},oLanguage:{fnInfoCallback:null},oBrowser:{bScrollOversize:!1,bScrollbarLeft:!1,bBounding:!1,barWidth:0},ajax:null,aanFeatures:[],aoData:[],aiDisplay:[],aiDisplayMaster:[],aIds:{},aoColumns:[],aoHeader:[],aoFooter:[],oPreviousSearch:{}, | ||||
|             aoPreSearchCols:[],aaSorting:null,aaSortingFixed:[],asStripeClasses:null,asDestroyStripes:[],sDestroyWidth:0,aoRowCallback:[],aoHeaderCallback:[],aoFooterCallback:[],aoDrawCallback:[],aoRowCreatedCallback:[],aoPreDrawCallback:[],aoInitComplete:[],aoStateSaveParams:[],aoStateLoadParams:[],aoStateLoaded:[],sTableId:"",nTable:null,nTHead:null,nTFoot:null,nTBody:null,nTableWrapper:null,bDeferLoading:!1,bInitialised:!1,aoOpenRows:[],sDom:null,searchDelay:null,sPaginationType:"two_button",iStateDuration:0, | ||||
|             aoStateSave:[],aoStateLoad:[],oSavedState:null,oLoadedState:null,sAjaxSource:null,sAjaxDataProp:null,bAjaxDataGet:!0,jqXHR:null,json:n,oAjaxData:n,fnServerData:null,aoServerParams:[],sServerMethod:null,fnFormatNumber:null,aLengthMenu:null,iDraw:0,bDrawing:!1,iDrawError:-1,_iDisplayLength:10,_iDisplayStart:0,_iRecordsTotal:0,_iRecordsDisplay:0,oClasses:{},bFiltered:!1,bSorted:!1,bSortCellsTop:null,oInit:null,aoDestroyCallback:[],fnRecordsTotal:function(){return"ssp"==I(this)?1*this._iRecordsTotal: | ||||
|                 this.aiDisplayMaster.length},fnRecordsDisplay:function(){return"ssp"==I(this)?1*this._iRecordsDisplay:this.aiDisplay.length},fnDisplayEnd:function(){var a=this._iDisplayLength,b=this._iDisplayStart,c=b+a,d=this.aiDisplay.length,e=this.oFeatures,f=e.bPaginate;return e.bServerSide?!1===f||-1===a?b+d:Math.min(b+a,this._iRecordsDisplay):!f||c>d||-1===a?d:c},oInstance:null,sInstance:null,iTabIndex:0,nScrollHead:null,nScrollFoot:null,aLastSort:[],oPlugins:{},rowIdFn:null,rowId:null};q.ext=C={buttons:{}, | ||||
|         classes:{},builder:"-source-",errMode:"alert",feature:[],search:[],selector:{cell:[],column:[],row:[]},internal:{},legacy:{ajax:null},pager:{},renderer:{pageButton:{},header:{}},order:{},type:{detect:[],search:{},order:{}},_unique:0,fnVersionCheck:q.fnVersionCheck,iApiIndex:0,oJUIClasses:{},sVersion:q.version};f.extend(C,{afnFiltering:C.search,aTypes:C.type.detect,ofnSearch:C.type.search,oSort:C.type.order,afnSortData:C.order,aoFeatures:C.feature,oApi:C.internal,oStdClasses:C.classes,oPagination:C.pager}); | ||||
|     f.extend(q.ext.classes,{sTable:"dataTable",sNoFooter:"no-footer",sPageButton:"paginate_button",sPageButtonActive:"current",sPageButtonDisabled:"disabled",sStripeOdd:"odd",sStripeEven:"even",sRowEmpty:"dataTables_empty",sWrapper:"dataTables_wrapper",sFilter:"dataTables_filter",sInfo:"dataTables_info",sPaging:"dataTables_paginate paging_",sLength:"dataTables_length",sProcessing:"dataTables_processing",sSortAsc:"sorting_asc",sSortDesc:"sorting_desc",sSortable:"sorting",sSortableAsc:"sorting_asc_disabled", | ||||
|         sSortableDesc:"sorting_desc_disabled",sSortableNone:"sorting_disabled",sSortColumn:"sorting_",sFilterInput:"",sLengthSelect:"",sScrollWrapper:"dataTables_scroll",sScrollHead:"dataTables_scrollHead",sScrollHeadInner:"dataTables_scrollHeadInner",sScrollBody:"dataTables_scrollBody",sScrollFoot:"dataTables_scrollFoot",sScrollFootInner:"dataTables_scrollFootInner",sHeaderTH:"",sFooterTH:"",sSortJUIAsc:"",sSortJUIDesc:"",sSortJUI:"",sSortJUIAscAllowed:"",sSortJUIDescAllowed:"",sSortJUIWrapper:"",sSortIcon:"", | ||||
|         sJUIHeader:"",sJUIFooter:""});var Ob=q.ext.pager;f.extend(Ob,{simple:function(a,b){return["previous","next"]},full:function(a,b){return["first","previous","next","last"]},numbers:function(a,b){return[ja(a,b)]},simple_numbers:function(a,b){return["previous",ja(a,b),"next"]},full_numbers:function(a,b){return["first","previous",ja(a,b),"next","last"]},first_last_numbers:function(a,b){return["first",ja(a,b),"last"]},_numbers:ja,numbers_length:7});f.extend(!0,q.ext.renderer,{pageButton:{_:function(a,b, | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           c,d,e,h){var g=a.oClasses,k=a.oLanguage.oPaginate,l=a.oLanguage.oAria.paginate||{},m,p,q=0,t=function(b,d){var n,r=g.sPageButtonDisabled,u=function(b){Wa(a,b.data.action,!0)};var w=0;for(n=d.length;w<n;w++){var v=d[w];if(f.isArray(v)){var x=f("<"+(v.DT_el||"div")+"/>").appendTo(b);t(x,v)}else{m=null;p=v;x=a.iTabIndex;switch(v){case "ellipsis":b.append('<span class="ellipsis">…</span>');break;case "first":m=k.sFirst;0===e&&(x=-1,p+=" "+r);break;case "previous":m=k.sPrevious;0===e&&(x=-1,p+= | ||||
|                 " "+r);break;case "next":m=k.sNext;if(0===h||e===h-1)x=-1,p+=" "+r;break;case "last":m=k.sLast;e===h-1&&(x=-1,p+=" "+r);break;default:m=v+1,p=e===v?g.sPageButtonActive:""}null!==m&&(x=f("<a>",{"class":g.sPageButton+" "+p,"aria-controls":a.sTableId,"aria-label":l[v],"data-dt-idx":q,tabindex:x,id:0===c&&"string"===typeof v?a.sTableId+"_"+v:null}).html(m).appendTo(b),Za(x,{action:v},u),q++)}}};try{var x=f(b).find(w.activeElement).data("dt-idx")}catch(lc){}t(f(b).empty(),d);x!==n&&f(b).find("[data-dt-idx="+ | ||||
|                 x+"]").trigger("focus")}}});f.extend(q.ext.type.detect,[function(a,b){b=b.oLanguage.sDecimal;return cb(a,b)?"num"+b:null},function(a,b){if(a&&!(a instanceof Date)&&!cc.test(a))return null;b=Date.parse(a);return null!==b&&!isNaN(b)||P(a)?"date":null},function(a,b){b=b.oLanguage.sDecimal;return cb(a,b,!0)?"num-fmt"+b:null},function(a,b){b=b.oLanguage.sDecimal;return Tb(a,b)?"html-num"+b:null},function(a,b){b=b.oLanguage.sDecimal;return Tb(a,b,!0)?"html-num-fmt"+b:null},function(a,b){return P(a)||"string"=== | ||||
|     typeof a&&-1!==a.indexOf("<")?"html":null}]);f.extend(q.ext.type.search,{html:function(a){return P(a)?a:"string"===typeof a?a.replace(Qb," ").replace(Da,""):""},string:function(a){return P(a)?a:"string"===typeof a?a.replace(Qb," "):a}});var Ca=function(a,b,c,d){if(0!==a&&(!a||"-"===a))return-Infinity;b&&(a=Sb(a,b));a.replace&&(c&&(a=a.replace(c,"")),d&&(a=a.replace(d,"")));return 1*a};f.extend(C.type.order,{"date-pre":function(a){a=Date.parse(a);return isNaN(a)?-Infinity:a},"html-pre":function(a){return P(a)? | ||||
|             "":a.replace?a.replace(/<.*?>/g,"").toLowerCase():a+""},"string-pre":function(a){return P(a)?"":"string"===typeof a?a.toLowerCase():a.toString?a.toString():""},"string-asc":function(a,b){return a<b?-1:a>b?1:0},"string-desc":function(a,b){return a<b?1:a>b?-1:0}});Ga("");f.extend(!0,q.ext.renderer,{header:{_:function(a,b,c,d){f(a.nTable).on("order.dt.DT",function(e,f,g,k){a===f&&(e=c.idx,b.removeClass(c.sSortingClass+" "+d.sSortAsc+" "+d.sSortDesc).addClass("asc"==k[e]?d.sSortAsc:"desc"==k[e]?d.sSortDesc: | ||||
|                 c.sSortingClass))})},jqueryui:function(a,b,c,d){f("<div/>").addClass(d.sSortJUIWrapper).append(b.contents()).append(f("<span/>").addClass(d.sSortIcon+" "+c.sSortingClassJUI)).appendTo(b);f(a.nTable).on("order.dt.DT",function(e,f,g,k){a===f&&(e=c.idx,b.removeClass(d.sSortAsc+" "+d.sSortDesc).addClass("asc"==k[e]?d.sSortAsc:"desc"==k[e]?d.sSortDesc:c.sSortingClass),b.find("span."+d.sSortIcon).removeClass(d.sSortJUIAsc+" "+d.sSortJUIDesc+" "+d.sSortJUI+" "+d.sSortJUIAscAllowed+" "+d.sSortJUIDescAllowed).addClass("asc"== | ||||
|             k[e]?d.sSortJUIAsc:"desc"==k[e]?d.sSortJUIDesc:c.sSortingClassJUI))})}}});var hb=function(a){return"string"===typeof a?a.replace(/&/g,"&").replace(/</g,"<").replace(/>/g,">").replace(/"/g,"""):a};q.render={number:function(a,b,c,d,e){return{display:function(f){if("number"!==typeof f&&"string"!==typeof f)return f;var g=0>f?"-":"",h=parseFloat(f);if(isNaN(h))return hb(f);h=h.toFixed(c);f=Math.abs(h);h=parseInt(f,10);f=c?b+(f-h).toFixed(c).substring(2):"";return g+(d||"")+h.toString().replace(/\B(?=(\d{3})+(?!\d))/g, | ||||
|                 a)+f+(e||"")}}},text:function(){return{display:hb,filter:hb}}};f.extend(q.ext.internal,{_fnExternApiFunc:Pb,_fnBuildAjax:ua,_fnAjaxUpdate:pb,_fnAjaxParameters:yb,_fnAjaxUpdateDraw:zb,_fnAjaxDataSrc:va,_fnAddColumn:Ha,_fnColumnOptions:la,_fnAdjustColumnSizing:Z,_fnVisibleToColumnIndex:aa,_fnColumnIndexToVisible:ba,_fnVisbleColumns:V,_fnGetColumns:na,_fnColumnTypes:Ja,_fnApplyColumnDefs:mb,_fnHungarianMap:H,_fnCamelToHungarian:L,_fnLanguageCompat:Fa,_fnBrowserDetect:kb,_fnAddData:R,_fnAddTr:oa,_fnNodeToDataIndex:function(a, | ||||
|                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              b){return b._DT_RowIndex!==n?b._DT_RowIndex:null},_fnNodeToColumnIndex:function(a,b,c){return f.inArray(c,a.aoData[b].anCells)},_fnGetCellData:F,_fnSetCellData:nb,_fnSplitObjNotation:Ma,_fnGetObjectDataFn:T,_fnSetObjectDataFn:Q,_fnGetDataMaster:Na,_fnClearTable:pa,_fnDeleteIndex:qa,_fnInvalidate:da,_fnGetRowElements:La,_fnCreateTr:Ka,_fnBuildHead:ob,_fnDrawHead:fa,_fnDraw:S,_fnReDraw:U,_fnAddOptionsHtml:rb,_fnDetectHeader:ea,_fnGetUniqueThs:ta,_fnFeatureHtmlFilter:tb,_fnFilterComplete:ha,_fnFilterCustom:Cb, | ||||
|         _fnFilterColumn:Bb,_fnFilter:Ab,_fnFilterCreateSearch:Sa,_fnEscapeRegex:Ta,_fnFilterData:Db,_fnFeatureHtmlInfo:wb,_fnUpdateInfo:Gb,_fnInfoMacros:Hb,_fnInitialise:ia,_fnInitComplete:wa,_fnLengthChange:Ua,_fnFeatureHtmlLength:sb,_fnFeatureHtmlPaginate:xb,_fnPageChange:Wa,_fnFeatureHtmlProcessing:ub,_fnProcessingDisplay:J,_fnFeatureHtmlTable:vb,_fnScrollDraw:ma,_fnApplyToChildren:N,_fnCalculateColumnWidths:Ia,_fnThrottle:Ra,_fnConvertToWidth:Ib,_fnGetWidestNode:Jb,_fnGetMaxLenString:Kb,_fnStringToCss:B, | ||||
|         _fnSortFlatten:X,_fnSort:qb,_fnSortAria:Mb,_fnSortListener:Ya,_fnSortAttachListener:Pa,_fnSortingClasses:za,_fnSortData:Lb,_fnSaveState:Aa,_fnLoadState:Nb,_fnSettingsFromNode:Ba,_fnLog:O,_fnMap:M,_fnBindAction:Za,_fnCallbackReg:D,_fnCallbackFire:A,_fnLengthOverflow:Va,_fnRenderer:Qa,_fnDataSource:I,_fnRowAttributes:Oa,_fnExtend:$a,_fnCalculateEnd:function(){}});f.fn.dataTable=q;q.$=f;f.fn.dataTableSettings=q.settings;f.fn.dataTableExt=q.ext;f.fn.DataTable=function(a){return f(this).dataTable(a).api()}; | ||||
|     f.each(q,function(a,b){f.fn.DataTable[a]=b});return f.fn.dataTable}); | ||||
							
								
								
									
										2
									
								
								public/js/jquery.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								public/js/jquery.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										1
									
								
								public/js/vue.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								public/js/vue.min.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							
							
								
								
									
										4
									
								
								public/mix-manifest.json
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								public/mix-manifest.json
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,4 @@ | |||
| { | ||||
|     "/js/app.js": "/js/app.js", | ||||
|     "/css/app.css": "/css/app.css" | ||||
| } | ||||
							
								
								
									
										2
									
								
								public/robots.txt
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										2
									
								
								public/robots.txt
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,2 @@ | |||
| User-agent: * | ||||
| Disallow: | ||||
							
								
								
									
										28
									
								
								public/web.config
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								public/web.config
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,28 @@ | |||
| <!-- | ||||
|     Rewrites requires Microsoft URL Rewrite Module for IIS | ||||
|     Download: https://www.microsoft.com/en-us/download/details.aspx?id=47337 | ||||
|     Debug Help: https://docs.microsoft.com/en-us/iis/extensions/url-rewrite-module/using-failed-request-tracing-to-trace-rewrite-rules | ||||
| --> | ||||
| <configuration> | ||||
|   <system.webServer> | ||||
|     <rewrite> | ||||
|       <rules> | ||||
|         <rule name="Imported Rule 1" stopProcessing="true"> | ||||
|           <match url="^(.*)/$" ignoreCase="false" /> | ||||
|           <conditions> | ||||
|             <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> | ||||
|           </conditions> | ||||
|           <action type="Redirect" redirectType="Permanent" url="/{R:1}" /> | ||||
|         </rule> | ||||
|         <rule name="Imported Rule 2" stopProcessing="true"> | ||||
|           <match url="^" ignoreCase="false" /> | ||||
|           <conditions> | ||||
|             <add input="{REQUEST_FILENAME}" matchType="IsDirectory" ignoreCase="false" negate="true" /> | ||||
|             <add input="{REQUEST_FILENAME}" matchType="IsFile" ignoreCase="false" negate="true" /> | ||||
|           </conditions> | ||||
|           <action type="Rewrite" url="index.php" /> | ||||
|         </rule> | ||||
|       </rules> | ||||
|     </rewrite> | ||||
|   </system.webServer> | ||||
| </configuration> | ||||
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.eot
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.eot
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										3717
									
								
								public/webfonts/fa-brands-400.svg
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3717
									
								
								public/webfonts/fa-brands-400.svg
									
										
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							| After Width: | Height: | Size: 730 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.ttf
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.ttf
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.woff
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.woff
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.woff2
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-brands-400.woff2
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.eot
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.eot
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										5028
									
								
								public/webfonts/fa-solid-900.svg
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5028
									
								
								public/webfonts/fa-solid-900.svg
									
										
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because it is too large
												Load diff
											
										
									
								
							| After Width: | Height: | Size: 896 KiB | 
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.ttf
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.ttf
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.woff
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.woff
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.woff2
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										
											BIN
										
									
								
								public/webfonts/fa-solid-900.woff2
									
										
									
									
									
										Normal file
									
								
							
										
											Binary file not shown.
										
									
								
							
							
								
								
									
										63
									
								
								public/yabsFromForm.txt
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										63
									
								
								public/yabsFromForm.txt
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,63 @@ | |||
| # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | ||||
| #              Yet-Another-Bench-Script              # | ||||
| #                     v2021-12-28                    # | ||||
| # https://github.com/masonr/yet-another-bench-script # | ||||
| # ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## ## # | ||||
| 
 | ||||
| Sat 05 Feb 2022 02:54:48 AM CET | ||||
| 
 | ||||
| Basic System Information: | ||||
| --------------------------------- | ||||
| Processor  : AMD Ryzen 9 3900X 12-Core Processor | ||||
| CPU cores  : 2 @ 3792.874 MHz | ||||
| AES-NI     : ✔ Enabled | ||||
| VM-x/AMD-V : ✔ Enabled | ||||
| RAM        : 3.8 GiB | ||||
| Swap       : 0.0 KiB | ||||
| Disk       : 39.3 GiB | ||||
| 
 | ||||
| fio Disk Speed Tests (Mixed R/W 50/50): | ||||
| --------------------------------- | ||||
| Block Size | 4k            (IOPS) | 64k           (IOPS) | ||||
|   ------   | ---            ----  | ----           ---- | ||||
| Read       | 174.73 MB/s  (43.6k) | 979.69 MB/s  (15.3k) | ||||
| Write      | 175.19 MB/s  (43.7k) | 984.85 MB/s  (15.3k) | ||||
| Total      | 349.93 MB/s  (87.4k) | 1.96 GB/s    (30.6k) | ||||
|            |                      | | ||||
| Block Size | 512k          (IOPS) | 1m            (IOPS) | ||||
|   ------   | ---            ----  | ----           ---- | ||||
| Read       | 571.27 MB/s   (1.1k) | 590.50 MB/s    (576) | ||||
| Write      | 601.62 MB/s   (1.1k) | 629.83 MB/s    (615) | ||||
| Total      | 1.17 GB/s     (2.2k) | 1.22 GB/s     (1.1k) | ||||
| 
 | ||||
| iperf3 Network Speed Tests (IPv4): | ||||
| --------------------------------- | ||||
| Provider        | Location (Link)           | Send Speed      | Recv Speed | ||||
|                 |                           |                 | | ||||
| Clouvider       | London, UK (10G)          | 709 Mbits/sec   | 882 Mbits/sec | ||||
| Online.net      | Paris, FR (10G)           | 570 Mbits/sec   | 786 Mbits/sec | ||||
| WorldStream     | The Netherlands (10G)     | 886 Mbits/sec   | 933 Mbits/sec | ||||
| WebHorizon      | Singapore (400M)          | 278 Mbits/sec   | 478 Mbits/sec | ||||
| Clouvider       | NYC, NY, US (10G)         | 260 Mbits/sec   | 243 Mbits/sec | ||||
| Velocity Online | Tallahassee, FL, US (10G) | 227 Mbits/sec   | 317 Mbits/sec | ||||
| Clouvider       | Los Angeles, CA, US (10G) | 255 Mbits/sec   | 288 Mbits/sec | ||||
| Iveloz Telecom  | Sao Paulo, BR (2G)        | 110 Mbits/sec   | 281 Mbits/sec | ||||
| 
 | ||||
| iperf3 Network Speed Tests (IPv6): | ||||
| --------------------------------- | ||||
| Provider        | Location (Link)           | Send Speed      | Recv Speed | ||||
|                 |                           |                 | | ||||
| Clouvider       | London, UK (10G)          | 706 Mbits/sec   | 854 Mbits/sec | ||||
| Online.net      | Paris, FR (10G)           | 591 Mbits/sec   | 760 Mbits/sec | ||||
| WorldStream     | The Netherlands (10G)     | 867 Mbits/sec   | 904 Mbits/sec | ||||
| WebHorizon      | Singapore (400M)          | 207 Mbits/sec   | 502 Mbits/sec | ||||
| Clouvider       | NYC, NY, US (10G)         | 302 Mbits/sec   | 201 Mbits/sec | ||||
| Clouvider       | Los Angeles, CA, US (10G) | 169 Mbits/sec   | 450 Mbits/sec | ||||
| 
 | ||||
| Geekbench 5 Benchmark Test: | ||||
| --------------------------------- | ||||
| Test            | Value | ||||
|                 | | ||||
| Single Core     | 1276 | ||||
| Multi Core      | 2394 | ||||
| Full Test       | https://browser.geekbench.com/v5/cpu/12590829 | ||||
							
								
								
									
										3
									
								
								resources/css/app.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								resources/css/app.css
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| @import 'tailwindcss/base'; | ||||
| @import 'tailwindcss/components'; | ||||
| @import 'tailwindcss/utilities'; | ||||
							
								
								
									
										6
									
								
								resources/js/app.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								resources/js/app.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,6 @@ | |||
| require('./bootstrap'); | ||||
| import Alpine from 'alpinejs'; | ||||
| 
 | ||||
| window.Alpine = Alpine; | ||||
| 
 | ||||
| Alpine.start(); | ||||
							
								
								
									
										32
									
								
								resources/js/bootstrap.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								resources/js/bootstrap.js
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,32 @@ | |||
| window._ = require('lodash'); | ||||
| window.Vue = require('vue'); | ||||
| try { | ||||
|     require('bootstrap'); | ||||
| } catch (e) {} | ||||
| 
 | ||||
| /** | ||||
|  * We'll load the axios HTTP library which allows us to easily issue requests | ||||
|  * to our Laravel back-end. This library automatically handles sending the | ||||
|  * CSRF token as a header based on the value of the "XSRF" token cookie. | ||||
|  */ | ||||
| 
 | ||||
| window.axios = require('axios'); | ||||
| 
 | ||||
| window.axios.defaults.headers.common['X-Requested-With'] = 'XMLHttpRequest'; | ||||
| 
 | ||||
| /** | ||||
|  * Echo exposes an expressive API for subscribing to channels and listening | ||||
|  * for events that are broadcast by Laravel. Echo and event broadcasting | ||||
|  * allows your team to easily build robust real-time web applications. | ||||
|  */ | ||||
| 
 | ||||
| // import Echo from 'laravel-echo';
 | ||||
| 
 | ||||
| // window.Pusher = require('pusher-js');
 | ||||
| 
 | ||||
| // window.Echo = new Echo({
 | ||||
| //     broadcaster: 'pusher',
 | ||||
| //     key: process.env.MIX_PUSHER_APP_KEY,
 | ||||
| //     cluster: process.env.MIX_PUSHER_APP_CLUSTER,
 | ||||
| //     forceTLS: true
 | ||||
| // });
 | ||||
							
								
								
									
										23
									
								
								resources/js/components/ExampleComponent.vue
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										23
									
								
								resources/js/components/ExampleComponent.vue
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,23 @@ | |||
| <template> | ||||
|     <div class="container"> | ||||
|         <div class="row justify-content-center"> | ||||
|             <div class="col-md-8"> | ||||
|                 <div class="card"> | ||||
|                     <div class="card-header">Example Component</div> | ||||
| 
 | ||||
|                     <div class="card-body"> | ||||
|                         I'm an example component. | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </template> | ||||
| 
 | ||||
| <script> | ||||
|     export default { | ||||
|         mounted() { | ||||
|             console.log('Component mounted.') | ||||
|         } | ||||
|     } | ||||
| </script> | ||||
							
								
								
									
										20
									
								
								resources/lang/en/auth.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										20
									
								
								resources/lang/en/auth.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,20 @@ | |||
| <?php | ||||
| 
 | ||||
| return [ | ||||
| 
 | ||||
|     /* | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | Authentication Language Lines | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | | ||||
|     | The following language lines are used during authentication for various | ||||
|     | messages that we need to display to the user. You are free to modify | ||||
|     | these language lines according to your application's requirements. | ||||
|     | | ||||
|     */ | ||||
| 
 | ||||
|     'failed' => 'These credentials do not match our records.', | ||||
|     'password' => 'The provided password is incorrect.', | ||||
|     'throttle' => 'Too many login attempts. Please try again in :seconds seconds.', | ||||
| 
 | ||||
| ]; | ||||
							
								
								
									
										19
									
								
								resources/lang/en/pagination.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								resources/lang/en/pagination.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,19 @@ | |||
| <?php | ||||
| 
 | ||||
| return [ | ||||
| 
 | ||||
|     /* | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | Pagination Language Lines | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | | ||||
|     | The following language lines are used by the paginator library to build | ||||
|     | the simple pagination links. You are free to change them to anything | ||||
|     | you want to customize your views to better match your application. | ||||
|     | | ||||
|     */ | ||||
| 
 | ||||
|     'previous' => '« Previous', | ||||
|     'next' => 'Next »', | ||||
| 
 | ||||
| ]; | ||||
							
								
								
									
										22
									
								
								resources/lang/en/passwords.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										22
									
								
								resources/lang/en/passwords.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,22 @@ | |||
| <?php | ||||
| 
 | ||||
| return [ | ||||
| 
 | ||||
|     /* | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | Password Reset Language Lines | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | | ||||
|     | The following language lines are the default lines which match reasons | ||||
|     | that are given by the password broker for a password update attempt | ||||
|     | has failed, such as for an invalid token or invalid new password. | ||||
|     | | ||||
|     */ | ||||
| 
 | ||||
|     'reset' => 'Your password has been reset!', | ||||
|     'sent' => 'We have emailed your password reset link!', | ||||
|     'throttled' => 'Please wait before retrying.', | ||||
|     'token' => 'This password reset token is invalid.', | ||||
|     'user' => "We can't find a user with that email address.", | ||||
| 
 | ||||
| ]; | ||||
							
								
								
									
										152
									
								
								resources/lang/en/validation.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										152
									
								
								resources/lang/en/validation.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,152 @@ | |||
| <?php | ||||
| 
 | ||||
| return [ | ||||
| 
 | ||||
|     /* | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | Validation Language Lines | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | | ||||
|     | The following language lines contain the default error messages used by | ||||
|     | the validator class. Some of these rules have multiple versions such | ||||
|     | as the size rules. Feel free to tweak each of these messages here. | ||||
|     | | ||||
|     */ | ||||
| 
 | ||||
|     'accepted' => 'The :attribute must be accepted.', | ||||
|     'active_url' => 'The :attribute is not a valid URL.', | ||||
|     'after' => 'The :attribute must be a date after :date.', | ||||
|     'after_or_equal' => 'The :attribute must be a date after or equal to :date.', | ||||
|     'alpha' => 'The :attribute may only contain letters.', | ||||
|     'alpha_dash' => 'The :attribute may only contain letters, numbers, dashes and underscores.', | ||||
|     'alpha_num' => 'The :attribute may only contain letters and numbers.', | ||||
|     'array' => 'The :attribute must be an array.', | ||||
|     'before' => 'The :attribute must be a date before :date.', | ||||
|     'before_or_equal' => 'The :attribute must be a date before or equal to :date.', | ||||
|     'between' => [ | ||||
|         'numeric' => 'The :attribute must be between :min and :max.', | ||||
|         'file' => 'The :attribute must be between :min and :max kilobytes.', | ||||
|         'string' => 'The :attribute must be between :min and :max characters.', | ||||
|         'array' => 'The :attribute must have between :min and :max items.', | ||||
|     ], | ||||
|     'boolean' => 'The :attribute field must be true or false.', | ||||
|     'confirmed' => 'The :attribute confirmation does not match.', | ||||
|     'date' => 'The :attribute is not a valid date.', | ||||
|     'date_equals' => 'The :attribute must be a date equal to :date.', | ||||
|     'date_format' => 'The :attribute does not match the format :format.', | ||||
|     'different' => 'The :attribute and :other must be different.', | ||||
|     'digits' => 'The :attribute must be :digits digits.', | ||||
|     'digits_between' => 'The :attribute must be between :min and :max digits.', | ||||
|     'dimensions' => 'The :attribute has invalid image dimensions.', | ||||
|     'distinct' => 'The :attribute field has a duplicate value.', | ||||
|     'email' => 'The :attribute must be a valid email address.', | ||||
|     'ends_with' => 'The :attribute must end with one of the following: :values.', | ||||
|     'exists' => 'The selected :attribute is invalid.', | ||||
|     'file' => 'The :attribute must be a file.', | ||||
|     'filled' => 'The :attribute field must have a value.', | ||||
|     'gt' => [ | ||||
|         'numeric' => 'The :attribute must be greater than :value.', | ||||
|         'file' => 'The :attribute must be greater than :value kilobytes.', | ||||
|         'string' => 'The :attribute must be greater than :value characters.', | ||||
|         'array' => 'The :attribute must have more than :value items.', | ||||
|     ], | ||||
|     'gte' => [ | ||||
|         'numeric' => 'The :attribute must be greater than or equal :value.', | ||||
|         'file' => 'The :attribute must be greater than or equal :value kilobytes.', | ||||
|         'string' => 'The :attribute must be greater than or equal :value characters.', | ||||
|         'array' => 'The :attribute must have :value items or more.', | ||||
|     ], | ||||
|     'image' => 'The :attribute must be an image.', | ||||
|     'in' => 'The selected :attribute is invalid.', | ||||
|     'in_array' => 'The :attribute field does not exist in :other.', | ||||
|     'integer' => 'The :attribute must be an integer.', | ||||
|     'ip' => 'The :attribute must be a valid IP address.', | ||||
|     'ipv4' => 'The :attribute must be a valid IPv4 address.', | ||||
|     'ipv6' => 'The :attribute must be a valid IPv6 address.', | ||||
|     'json' => 'The :attribute must be a valid JSON string.', | ||||
|     'lt' => [ | ||||
|         'numeric' => 'The :attribute must be less than :value.', | ||||
|         'file' => 'The :attribute must be less than :value kilobytes.', | ||||
|         'string' => 'The :attribute must be less than :value characters.', | ||||
|         'array' => 'The :attribute must have less than :value items.', | ||||
|     ], | ||||
|     'lte' => [ | ||||
|         'numeric' => 'The :attribute must be less than or equal :value.', | ||||
|         'file' => 'The :attribute must be less than or equal :value kilobytes.', | ||||
|         'string' => 'The :attribute must be less than or equal :value characters.', | ||||
|         'array' => 'The :attribute must not have more than :value items.', | ||||
|     ], | ||||
|     'max' => [ | ||||
|         'numeric' => 'The :attribute may not be greater than :max.', | ||||
|         'file' => 'The :attribute may not be greater than :max kilobytes.', | ||||
|         'string' => 'The :attribute may not be greater than :max characters.', | ||||
|         'array' => 'The :attribute may not have more than :max items.', | ||||
|     ], | ||||
|     'mimes' => 'The :attribute must be a file of type: :values.', | ||||
|     'mimetypes' => 'The :attribute must be a file of type: :values.', | ||||
|     'min' => [ | ||||
|         'numeric' => 'The :attribute must be at least :min.', | ||||
|         'file' => 'The :attribute must be at least :min kilobytes.', | ||||
|         'string' => 'The :attribute must be at least :min characters.', | ||||
|         'array' => 'The :attribute must have at least :min items.', | ||||
|     ], | ||||
|     'multiple_of' => 'The :attribute must be a multiple of :value.', | ||||
|     'not_in' => 'The selected :attribute is invalid.', | ||||
|     'not_regex' => 'The :attribute format is invalid.', | ||||
|     'numeric' => 'The :attribute must be a number.', | ||||
|     'password' => 'The password is incorrect.', | ||||
|     'present' => 'The :attribute field must be present.', | ||||
|     'regex' => 'The :attribute format is invalid.', | ||||
|     'required' => 'The :attribute field is required.', | ||||
|     'required_if' => 'The :attribute field is required when :other is :value.', | ||||
|     'required_unless' => 'The :attribute field is required unless :other is in :values.', | ||||
|     'required_with' => 'The :attribute field is required when :values is present.', | ||||
|     'required_with_all' => 'The :attribute field is required when :values are present.', | ||||
|     'required_without' => 'The :attribute field is required when :values is not present.', | ||||
|     'required_without_all' => 'The :attribute field is required when none of :values are present.', | ||||
|     'same' => 'The :attribute and :other must match.', | ||||
|     'size' => [ | ||||
|         'numeric' => 'The :attribute must be :size.', | ||||
|         'file' => 'The :attribute must be :size kilobytes.', | ||||
|         'string' => 'The :attribute must be :size characters.', | ||||
|         'array' => 'The :attribute must contain :size items.', | ||||
|     ], | ||||
|     'starts_with' => 'The :attribute must start with one of the following: :values.', | ||||
|     'string' => 'The :attribute must be a string.', | ||||
|     'timezone' => 'The :attribute must be a valid zone.', | ||||
|     'unique' => 'The :attribute has already been taken.', | ||||
|     'uploaded' => 'The :attribute failed to upload.', | ||||
|     'url' => 'The :attribute format is invalid.', | ||||
|     'uuid' => 'The :attribute must be a valid UUID.', | ||||
| 
 | ||||
|     /* | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | Custom Validation Language Lines | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | | ||||
|     | Here you may specify custom validation messages for attributes using the | ||||
|     | convention "attribute.rule" to name the lines. This makes it quick to | ||||
|     | specify a specific custom language line for a given attribute rule. | ||||
|     | | ||||
|     */ | ||||
| 
 | ||||
|     'custom' => [ | ||||
|         'attribute-name' => [ | ||||
|             'rule-name' => 'custom-message', | ||||
|         ], | ||||
|     ], | ||||
| 
 | ||||
|     /* | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | Custom Validation Attributes | ||||
|     |-------------------------------------------------------------------------- | ||||
|     | | ||||
|     | The following language lines are used to swap our attribute placeholder | ||||
|     | with something more reader friendly such as "E-Mail Address" instead | ||||
|     | of "email". This simply helps us make our message more expressive. | ||||
|     | | ||||
|     */ | ||||
| 
 | ||||
|     'attributes' => [], | ||||
| 
 | ||||
| ]; | ||||
							
								
								
									
										7
									
								
								resources/sass/_variables.scss
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								resources/sass/_variables.scss
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,7 @@ | |||
| // Body | ||||
| $body-bg: #f8fafc; | ||||
| 
 | ||||
| // Typography | ||||
| $font-family-sans-serif: 'Nunito', sans-serif; | ||||
| $font-size-base: 0.9rem; | ||||
| $line-height-base: 1.6; | ||||
							
								
								
									
										8
									
								
								resources/sass/app.scss
									
										
									
									
										vendored
									
									
										Normal file
									
								
							
							
						
						
									
										8
									
								
								resources/sass/app.scss
									
										
									
									
										vendored
									
									
										Normal file
									
								
							|  | @ -0,0 +1,8 @@ | |||
| // Fonts | ||||
| @import url('https://fonts.googleapis.com/css?family=Nunito'); | ||||
| 
 | ||||
| // Variables | ||||
| @import 'variables'; | ||||
| 
 | ||||
| // Bootstrap | ||||
| @import '~bootstrap/scss/bootstrap'; | ||||
							
								
								
									
										55
									
								
								resources/views/account/index.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										55
									
								
								resources/views/account/index.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,55 @@ | |||
| @section('title') {{'Edit account'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         Edit account | ||||
|     </x-slot> | ||||
| 
 | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             @if ($message = Session::get('success')) | ||||
|                 <div class="alert alert-success" role="alert"> | ||||
|                     <p class="my-1">{{ $message }}</p> | ||||
|                 </div> | ||||
|             @endif | ||||
|             <form action="{{ route('account.update',Auth::user()->id) }}" method="POST"> | ||||
|                 @csrf | ||||
|                 @method('PUT') | ||||
|                 <div class="row mt-2"> | ||||
|                     <div class="col-12 col-md-4 mb-3"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">Name</x-slot> | ||||
|                             <x-slot name="name">name</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                             <x-slot name="value">{{Auth::user()->name}}</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mt-2"> | ||||
|                     <div class="col-12 col-md-4 mb-3"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">Email</x-slot> | ||||
|                             <x-slot name="name">email</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                             <x-slot name="value">{{Auth::user()->email}}</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row my-3"> | ||||
|                     <div class="col-12 col-md-8"> | ||||
|                         API key: <code>{{ Auth::user()->api_token }}</code> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-4"> | ||||
|                         <x-submit-button>Update account</x-submit-button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </form> | ||||
|         </x-card> | ||||
|         @if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1) | ||||
|             <p class="text-muted mt-4 text-end"><small>@if(isset($timer))@endif Built on | ||||
|                     Laravel | ||||
|                     v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }})</small></p> | ||||
|         @endif | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										36
									
								
								resources/views/auth/confirm-password.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								resources/views/auth/confirm-password.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,36 @@ | |||
| <x-guest-layout> | ||||
|     <x-auth-card> | ||||
|         <x-slot name="logo"> | ||||
|             <a href="/"> | ||||
|                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" /> | ||||
|             </a> | ||||
|         </x-slot> | ||||
| 
 | ||||
|         <div class="mb-4 text-sm text-gray-600"> | ||||
|             {{ __('This is a secure area of the application. Please confirm your password before continuing.') }} | ||||
|         </div> | ||||
| 
 | ||||
|         <!-- Validation Errors --> | ||||
|         <x-auth-validation-errors class="mb-4" :errors="$errors" /> | ||||
| 
 | ||||
|         <form method="POST" action="{{ route('password.confirm') }}"> | ||||
|             @csrf | ||||
| 
 | ||||
|             <!-- Password --> | ||||
|             <div> | ||||
|                 <x-label for="password" :value="__('Password')" /> | ||||
| 
 | ||||
|                 <x-input id="password" class="block mt-1 w-full" | ||||
|                                 type="password" | ||||
|                                 name="password" | ||||
|                                 required autocomplete="current-password" /> | ||||
|             </div> | ||||
| 
 | ||||
|             <div class="flex justify-end mt-4"> | ||||
|                 <x-button> | ||||
|                     {{ __('Confirm') }} | ||||
|                 </x-button> | ||||
|             </div> | ||||
|         </form> | ||||
|     </x-auth-card> | ||||
| </x-guest-layout> | ||||
							
								
								
									
										36
									
								
								resources/views/auth/forgot-password.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										36
									
								
								resources/views/auth/forgot-password.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,36 @@ | |||
| <x-guest-layout> | ||||
|     <x-auth-card> | ||||
|         <x-slot name="logo"> | ||||
|             <a href="/"> | ||||
|                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" /> | ||||
|             </a> | ||||
|         </x-slot> | ||||
| 
 | ||||
|         <div class="mb-4 text-sm text-gray-600"> | ||||
|             {{ __('Forgot your password? No problem. Just let us know your email address and we will email you a password reset link that will allow you to choose a new one.') }} | ||||
|         </div> | ||||
| 
 | ||||
|         <!-- Session Status --> | ||||
|         <x-auth-session-status class="mb-4" :status="session('status')" /> | ||||
| 
 | ||||
|         <!-- Validation Errors --> | ||||
|         <x-auth-validation-errors class="mb-4" :errors="$errors" /> | ||||
| 
 | ||||
|         <form method="POST" action="{{ route('password.email') }}"> | ||||
|             @csrf | ||||
| 
 | ||||
|             <!-- Email Address --> | ||||
|             <div> | ||||
|                 <x-label for="email" :value="__('Email')" /> | ||||
| 
 | ||||
|                 <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autofocus /> | ||||
|             </div> | ||||
| 
 | ||||
|             <div class="flex items-center justify-end mt-4"> | ||||
|                 <x-button> | ||||
|                     {{ __('Email Password Reset Link') }} | ||||
|                 </x-button> | ||||
|             </div> | ||||
|         </form> | ||||
|     </x-auth-card> | ||||
| </x-guest-layout> | ||||
							
								
								
									
										44
									
								
								resources/views/auth/login.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										44
									
								
								resources/views/auth/login.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,44 @@ | |||
| @section('title') {{'Login'}} @endsection | ||||
| <x-guest-layout> | ||||
|     <x-auth-card> | ||||
|         <!-- Session Status --> | ||||
|         <x-auth-session-status class="mb-4" :status="session('status')"/> | ||||
|         <!-- Validation Errors --> | ||||
|         <x-auth-validation-errors class="mb-4" :errors="$errors"/> | ||||
| 
 | ||||
|             <h3 class="text-center mb-4">My idlers</h3> | ||||
|             <form method="POST" action="{{ route('login') }}"> | ||||
|                 @csrf | ||||
|                 <div class="form-floating mb-3"> | ||||
|                     <x-label for="email" :value="__('Email')"/> | ||||
| 
 | ||||
|                     <x-input id="email" class="form-control" type="email" name="email" :value="old('email')" required | ||||
|                              autofocus/> | ||||
|                 </div> | ||||
|                 <div class="form-floating mb-3"> | ||||
|                     <x-label for="password" :value="__('Password')"/> | ||||
| 
 | ||||
|                     <x-input id="password" class="form-control" | ||||
|                              type="password" | ||||
|                              name="password" | ||||
|                              required autocomplete="current-password"/> | ||||
|                 </div> | ||||
| 
 | ||||
|                 <div class="form-check mb-3"> | ||||
|                     <input class="form-check-input" type="checkbox" value="remember-me" id="remember-me"> | ||||
|                     <label class="form-check-label" for="remember-me"> | ||||
|                         Remember me | ||||
|                     </label> | ||||
|                 </div> | ||||
|                 @if (Route::has('password.request')) | ||||
|                     <a class="text-decoration-none" href="{{ route('password.request') }}"> | ||||
|                         {{ __('Forgot your password?') }} | ||||
|                     </a> | ||||
|                 @endif | ||||
|                 <x-button class="mt-3 w-100 btn btn-lg btn-primary"> | ||||
|                     {{ __('Login') }} | ||||
|                 </x-button> | ||||
|             </form> | ||||
| 
 | ||||
|     </x-auth-card> | ||||
| </x-guest-layout> | ||||
							
								
								
									
										49
									
								
								resources/views/auth/passwords/confirm.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										49
									
								
								resources/views/auth/passwords/confirm.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,49 @@ | |||
| @extends('layouts.app') | ||||
| 
 | ||||
| @section('content') | ||||
| <div class="container"> | ||||
|     <div class="row justify-content-center"> | ||||
|         <div class="col-md-8"> | ||||
|             <div class="card"> | ||||
|                 <div class="card-header">{{ __('Confirm Password') }}</div> | ||||
| 
 | ||||
|                 <div class="card-body"> | ||||
|                     {{ __('Please confirm your password before continuing.') }} | ||||
| 
 | ||||
|                     <form method="POST" action="{{ route('password.confirm') }}"> | ||||
|                         @csrf | ||||
| 
 | ||||
|                         <div class="row mb-3"> | ||||
|                             <label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label> | ||||
| 
 | ||||
|                             <div class="col-md-6"> | ||||
|                                 <input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="current-password"> | ||||
| 
 | ||||
|                                 @error('password') | ||||
|                                     <span class="invalid-feedback" role="alert"> | ||||
|                                         <strong>{{ $message }}</strong> | ||||
|                                     </span> | ||||
|                                 @enderror | ||||
|                             </div> | ||||
|                         </div> | ||||
| 
 | ||||
|                         <div class="row mb-0"> | ||||
|                             <div class="col-md-8 offset-md-4"> | ||||
|                                 <button type="submit" class="btn btn-primary"> | ||||
|                                     {{ __('Confirm Password') }} | ||||
|                                 </button> | ||||
| 
 | ||||
|                                 @if (Route::has('password.request')) | ||||
|                                     <a class="btn btn-link" href="{{ route('password.request') }}"> | ||||
|                                         {{ __('Forgot Your Password?') }} | ||||
|                                     </a> | ||||
|                                 @endif | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </form> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
| @endsection | ||||
							
								
								
									
										47
									
								
								resources/views/auth/passwords/email.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										47
									
								
								resources/views/auth/passwords/email.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,47 @@ | |||
| @extends('layouts.app') | ||||
| 
 | ||||
| @section('content') | ||||
| <div class="container"> | ||||
|     <div class="row justify-content-center"> | ||||
|         <div class="col-md-8"> | ||||
|             <div class="card"> | ||||
|                 <div class="card-header">{{ __('Reset Password') }}</div> | ||||
| 
 | ||||
|                 <div class="card-body"> | ||||
|                     @if (session('status')) | ||||
|                         <div class="alert alert-success" role="alert"> | ||||
|                             {{ session('status') }} | ||||
|                         </div> | ||||
|                     @endif | ||||
| 
 | ||||
|                     <form method="POST" action="{{ route('password.email') }}"> | ||||
|                         @csrf | ||||
| 
 | ||||
|                         <div class="row mb-3"> | ||||
|                             <label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label> | ||||
| 
 | ||||
|                             <div class="col-md-6"> | ||||
|                                 <input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ old('email') }}" required autocomplete="email" autofocus> | ||||
| 
 | ||||
|                                 @error('email') | ||||
|                                     <span class="invalid-feedback" role="alert"> | ||||
|                                         <strong>{{ $message }}</strong> | ||||
|                                     </span> | ||||
|                                 @enderror | ||||
|                             </div> | ||||
|                         </div> | ||||
| 
 | ||||
|                         <div class="row mb-0"> | ||||
|                             <div class="col-md-6 offset-md-4"> | ||||
|                                 <button type="submit" class="btn btn-primary"> | ||||
|                                     {{ __('Send Password Reset Link') }} | ||||
|                                 </button> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </form> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
| @endsection | ||||
							
								
								
									
										65
									
								
								resources/views/auth/passwords/reset.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										65
									
								
								resources/views/auth/passwords/reset.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,65 @@ | |||
| @extends('layouts.app') | ||||
| 
 | ||||
| @section('content') | ||||
| <div class="container"> | ||||
|     <div class="row justify-content-center"> | ||||
|         <div class="col-md-8"> | ||||
|             <div class="card"> | ||||
|                 <div class="card-header">{{ __('Reset Password') }}</div> | ||||
| 
 | ||||
|                 <div class="card-body"> | ||||
|                     <form method="POST" action="{{ route('password.update') }}"> | ||||
|                         @csrf | ||||
| 
 | ||||
|                         <input type="hidden" name="token" value="{{ $token }}"> | ||||
| 
 | ||||
|                         <div class="row mb-3"> | ||||
|                             <label for="email" class="col-md-4 col-form-label text-md-end">{{ __('Email Address') }}</label> | ||||
| 
 | ||||
|                             <div class="col-md-6"> | ||||
|                                 <input id="email" type="email" class="form-control @error('email') is-invalid @enderror" name="email" value="{{ $email ?? old('email') }}" required autocomplete="email" autofocus> | ||||
| 
 | ||||
|                                 @error('email') | ||||
|                                     <span class="invalid-feedback" role="alert"> | ||||
|                                         <strong>{{ $message }}</strong> | ||||
|                                     </span> | ||||
|                                 @enderror | ||||
|                             </div> | ||||
|                         </div> | ||||
| 
 | ||||
|                         <div class="row mb-3"> | ||||
|                             <label for="password" class="col-md-4 col-form-label text-md-end">{{ __('Password') }}</label> | ||||
| 
 | ||||
|                             <div class="col-md-6"> | ||||
|                                 <input id="password" type="password" class="form-control @error('password') is-invalid @enderror" name="password" required autocomplete="new-password"> | ||||
| 
 | ||||
|                                 @error('password') | ||||
|                                     <span class="invalid-feedback" role="alert"> | ||||
|                                         <strong>{{ $message }}</strong> | ||||
|                                     </span> | ||||
|                                 @enderror | ||||
|                             </div> | ||||
|                         </div> | ||||
| 
 | ||||
|                         <div class="row mb-3"> | ||||
|                             <label for="password-confirm" class="col-md-4 col-form-label text-md-end">{{ __('Confirm Password') }}</label> | ||||
| 
 | ||||
|                             <div class="col-md-6"> | ||||
|                                 <input id="password-confirm" type="password" class="form-control" name="password_confirmation" required autocomplete="new-password"> | ||||
|                             </div> | ||||
|                         </div> | ||||
| 
 | ||||
|                         <div class="row mb-0"> | ||||
|                             <div class="col-md-6 offset-md-4"> | ||||
|                                 <button type="submit" class="btn btn-primary"> | ||||
|                                     {{ __('Reset Password') }} | ||||
|                                 </button> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </form> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
| @endsection | ||||
							
								
								
									
										60
									
								
								resources/views/auth/register.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										60
									
								
								resources/views/auth/register.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,60 @@ | |||
| @section('title') {{'Register'}} @endsection | ||||
| <x-guest-layout> | ||||
|     <x-auth-card> | ||||
|         <!-- Validation Errors --> | ||||
|         <x-auth-validation-errors class="mb-4" :errors="$errors"/> | ||||
| 
 | ||||
|         <h3 class="text-center mb-4">My idlers Register</h3> | ||||
|         <form method="POST" action="{{ route('register') }}"> | ||||
|         @csrf | ||||
| 
 | ||||
|         <!-- Name --> | ||||
|             <div class="form-floating mb-3"> | ||||
|                 <x-label for="name" :value="__('Name')"/> | ||||
| 
 | ||||
|                 <x-input id="name" class="form-control  " type="text" name="name" :value="old('name')" required | ||||
|                          autofocus/> | ||||
|             </div> | ||||
| 
 | ||||
|             <!-- Email Address --> | ||||
|             <div class="form-floating mb-3"> | ||||
|                 <x-label for="email" :value="__('Email')"/> | ||||
| 
 | ||||
|                 <x-input id="email" class="form-control" type="email" name="email" :value="old('email')" required | ||||
|                          autofocus/> | ||||
|             </div> | ||||
| 
 | ||||
|             <!-- Password --> | ||||
|             <div class="form-floating mb-3"> | ||||
|                 <x-label for="password" :value="__('Password')"/> | ||||
| 
 | ||||
|                 <x-input id="password" class="form-control" | ||||
|                          type="password" | ||||
|                          name="password" | ||||
|                          required autocomplete="new-password"/> | ||||
|             </div> | ||||
| 
 | ||||
|             <!-- Confirm Password --> | ||||
|             <div class="form-floating mb-3"> | ||||
|                 <x-label for="password_confirmation" :value="__('Confirm Password')"/> | ||||
| 
 | ||||
|                 <x-input id="password_confirmation" class="form-control" | ||||
|                          type="password" | ||||
|                          name="password_confirmation" required/> | ||||
|             </div> | ||||
| 
 | ||||
|             <div class="row mt-3"> | ||||
|                 <div class="col-12"> | ||||
|                     <a class="text-decoration-none" href="{{ route('login') }}"> | ||||
|                         {{ __('Already registered?') }} | ||||
|                     </a> | ||||
|                 </div> | ||||
|                 <div class="col-12"> | ||||
|                     <x-button class="mt-3 w-100 btn btn-lg btn-primary"> | ||||
|                         {{ __('Register') }} | ||||
|                     </x-button> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </form> | ||||
|     </x-auth-card> | ||||
| </x-guest-layout> | ||||
							
								
								
									
										48
									
								
								resources/views/auth/reset-password.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										48
									
								
								resources/views/auth/reset-password.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,48 @@ | |||
| <x-guest-layout> | ||||
|     <x-auth-card> | ||||
|         <x-slot name="logo"> | ||||
|             <a href="/"> | ||||
|                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" /> | ||||
|             </a> | ||||
|         </x-slot> | ||||
| 
 | ||||
|         <!-- Validation Errors --> | ||||
|         <x-auth-validation-errors class="mb-4" :errors="$errors" /> | ||||
| 
 | ||||
|         <form method="POST" action="{{ route('password.update') }}"> | ||||
|             @csrf | ||||
| 
 | ||||
|             <!-- Password Reset Token --> | ||||
|             <input type="hidden" name="token" value="{{ $request->route('token') }}"> | ||||
| 
 | ||||
|             <!-- Email Address --> | ||||
|             <div> | ||||
|                 <x-label for="email" :value="__('Email')" /> | ||||
| 
 | ||||
|                 <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email', $request->email)" required autofocus /> | ||||
|             </div> | ||||
| 
 | ||||
|             <!-- Password --> | ||||
|             <div class="mt-4"> | ||||
|                 <x-label for="password" :value="__('Password')" /> | ||||
| 
 | ||||
|                 <x-input id="password" class="block mt-1 w-full" type="password" name="password" required /> | ||||
|             </div> | ||||
| 
 | ||||
|             <!-- Confirm Password --> | ||||
|             <div class="mt-4"> | ||||
|                 <x-label for="password_confirmation" :value="__('Confirm Password')" /> | ||||
| 
 | ||||
|                 <x-input id="password_confirmation" class="block mt-1 w-full" | ||||
|                                     type="password" | ||||
|                                     name="password_confirmation" required /> | ||||
|             </div> | ||||
| 
 | ||||
|             <div class="flex items-center justify-end mt-4"> | ||||
|                 <x-button> | ||||
|                     {{ __('Reset Password') }} | ||||
|                 </x-button> | ||||
|             </div> | ||||
|         </form> | ||||
|     </x-auth-card> | ||||
| </x-guest-layout> | ||||
							
								
								
									
										39
									
								
								resources/views/auth/verify-email.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								resources/views/auth/verify-email.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,39 @@ | |||
| <x-guest-layout> | ||||
|     <x-auth-card> | ||||
|         <x-slot name="logo"> | ||||
|             <a href="/"> | ||||
|                 <x-application-logo class="w-20 h-20 fill-current text-gray-500" /> | ||||
|             </a> | ||||
|         </x-slot> | ||||
| 
 | ||||
|         <div class="mb-4 text-sm text-gray-600"> | ||||
|             {{ __('Thanks for signing up! Before getting started, could you verify your email address by clicking on the link we just emailed to you? If you didn\'t receive the email, we will gladly send you another.') }} | ||||
|         </div> | ||||
| 
 | ||||
|         @if (session('status') == 'verification-link-sent') | ||||
|             <div class="mb-4 font-medium text-sm text-green-600"> | ||||
|                 {{ __('A new verification link has been sent to the email address you provided during registration.') }} | ||||
|             </div> | ||||
|         @endif | ||||
| 
 | ||||
|         <div class="mt-4 flex items-center justify-between"> | ||||
|             <form method="POST" action="{{ route('verification.send') }}"> | ||||
|                 @csrf | ||||
| 
 | ||||
|                 <div> | ||||
|                     <x-button> | ||||
|                         {{ __('Resend Verification Email') }} | ||||
|                     </x-button> | ||||
|                 </div> | ||||
|             </form> | ||||
| 
 | ||||
|             <form method="POST" action="{{ route('logout') }}"> | ||||
|                 @csrf | ||||
| 
 | ||||
|                 <button type="submit" class="underline text-sm text-gray-600 hover:text-gray-900"> | ||||
|                     {{ __('Log Out') }} | ||||
|                 </button> | ||||
|             </form> | ||||
|         </div> | ||||
|     </x-auth-card> | ||||
| </x-guest-layout> | ||||
							
								
								
									
										28
									
								
								resources/views/auth/verify.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								resources/views/auth/verify.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,28 @@ | |||
| @extends('layouts.app') | ||||
| 
 | ||||
| @section('content') | ||||
| <div class="container"> | ||||
|     <div class="row justify-content-center"> | ||||
|         <div class="col-md-8"> | ||||
|             <div class="card"> | ||||
|                 <div class="card-header">{{ __('Verify Your Email Address') }}</div> | ||||
| 
 | ||||
|                 <div class="card-body"> | ||||
|                     @if (session('resent')) | ||||
|                         <div class="alert alert-success" role="alert"> | ||||
|                             {{ __('A fresh verification link has been sent to your email address.') }} | ||||
|                         </div> | ||||
|                     @endif | ||||
| 
 | ||||
|                     {{ __('Before proceeding, please check your email for a verification link.') }} | ||||
|                     {{ __('If you did not receive the email') }}, | ||||
|                     <form class="d-inline" method="POST" action="{{ route('verification.resend') }}"> | ||||
|                         @csrf | ||||
|                         <button type="submit" class="btn btn-link p-0 m-0 align-baseline">{{ __('click here to request another') }}</button>. | ||||
|                     </form> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
| @endsection | ||||
							
								
								
									
										3
									
								
								resources/views/components/application-logo.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								resources/views/components/application-logo.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| <svg viewBox="0 0 316 316" xmlns="http://www.w3.org/2000/svg" {{ $attributes }}> | ||||
|     <path d="M305.8 81.125C305.77 80.995 305.69 80.885 305.65 80.755C305.56 80.525 305.49 80.285 305.37 80.075C305.29 79.935 305.17 79.815 305.07 79.685C304.94 79.515 304.83 79.325 304.68 79.175C304.55 79.045 304.39 78.955 304.25 78.845C304.09 78.715 303.95 78.575 303.77 78.475L251.32 48.275C249.97 47.495 248.31 47.495 246.96 48.275L194.51 78.475C194.33 78.575 194.19 78.725 194.03 78.845C193.89 78.955 193.73 79.045 193.6 79.175C193.45 79.325 193.34 79.515 193.21 79.685C193.11 79.815 192.99 79.935 192.91 80.075C192.79 80.285 192.71 80.525 192.63 80.755C192.58 80.875 192.51 80.995 192.48 81.125C192.38 81.495 192.33 81.875 192.33 82.265V139.625L148.62 164.795V52.575C148.62 52.185 148.57 51.805 148.47 51.435C148.44 51.305 148.36 51.195 148.32 51.065C148.23 50.835 148.16 50.595 148.04 50.385C147.96 50.245 147.84 50.125 147.74 49.995C147.61 49.825 147.5 49.635 147.35 49.485C147.22 49.355 147.06 49.265 146.92 49.155C146.76 49.025 146.62 48.885 146.44 48.785L93.99 18.585C92.64 17.805 90.98 17.805 89.63 18.585L37.18 48.785C37 48.885 36.86 49.035 36.7 49.155C36.56 49.265 36.4 49.355 36.27 49.485C36.12 49.635 36.01 49.825 35.88 49.995C35.78 50.125 35.66 50.245 35.58 50.385C35.46 50.595 35.38 50.835 35.3 51.065C35.25 51.185 35.18 51.305 35.15 51.435C35.05 51.805 35 52.185 35 52.575V232.235C35 233.795 35.84 235.245 37.19 236.025L142.1 296.425C142.33 296.555 142.58 296.635 142.82 296.725C142.93 296.765 143.04 296.835 143.16 296.865C143.53 296.965 143.9 297.015 144.28 297.015C144.66 297.015 145.03 296.965 145.4 296.865C145.5 296.835 145.59 296.775 145.69 296.745C145.95 296.655 146.21 296.565 146.45 296.435L251.36 236.035C252.72 235.255 253.55 233.815 253.55 232.245V174.885L303.81 145.945C305.17 145.165 306 143.725 306 142.155V82.265C305.95 81.875 305.89 81.495 305.8 81.125ZM144.2 227.205L100.57 202.515L146.39 176.135L196.66 147.195L240.33 172.335L208.29 190.625L144.2 227.205ZM244.75 114.995V164.795L226.39 154.225L201.03 139.625V89.825L219.39 100.395L244.75 114.995ZM249.12 57.105L292.81 82.265L249.12 107.425L205.43 82.265L249.12 57.105ZM114.49 184.425L96.13 194.995V85.305L121.49 70.705L139.85 60.135V169.815L114.49 184.425ZM91.76 27.425L135.45 52.585L91.76 77.745L48.07 52.585L91.76 27.425ZM43.67 60.135L62.03 70.705L87.39 85.305V202.545V202.555V202.565C87.39 202.735 87.44 202.895 87.46 203.055C87.49 203.265 87.49 203.485 87.55 203.695V203.705C87.6 203.875 87.69 204.035 87.76 204.195C87.84 204.375 87.89 204.575 87.99 204.745C87.99 204.745 87.99 204.755 88 204.755C88.09 204.905 88.22 205.035 88.33 205.175C88.45 205.335 88.55 205.495 88.69 205.635L88.7 205.645C88.82 205.765 88.98 205.855 89.12 205.965C89.28 206.085 89.42 206.225 89.59 206.325C89.6 206.325 89.6 206.325 89.61 206.335C89.62 206.335 89.62 206.345 89.63 206.345L139.87 234.775V285.065L43.67 229.705V60.135ZM244.75 229.705L148.58 285.075V234.775L219.8 194.115L244.75 179.875V229.705ZM297.2 139.625L253.49 164.795V114.995L278.85 100.395L297.21 89.825V139.625H297.2Z"/> | ||||
| </svg> | ||||
| After Width: | Height: | Size: 3 KiB | 
							
								
								
									
										12
									
								
								resources/views/components/auth-card.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								resources/views/components/auth-card.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,12 @@ | |||
| <main class="form-signin"> | ||||
| <div class="card"> | ||||
|     <div class="card-body shadow"> | ||||
|         @if(isset($logo)) | ||||
|             <div> | ||||
|                 {{ $logo }} | ||||
|             </div> | ||||
|         @endif | ||||
|         {{ $slot }} | ||||
|     </div> | ||||
| </div> | ||||
| </main> | ||||
							
								
								
									
										7
									
								
								resources/views/components/auth-session-status.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								resources/views/components/auth-session-status.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,7 @@ | |||
| @props(['status']) | ||||
| 
 | ||||
| @if ($status) | ||||
|     <div {{ $attributes->merge(['class' => 'font-medium text-sm text-green-600']) }}> | ||||
|         {{ $status }} | ||||
|     </div> | ||||
| @endif | ||||
							
								
								
									
										14
									
								
								resources/views/components/auth-validation-errors.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										14
									
								
								resources/views/components/auth-validation-errors.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,14 @@ | |||
| @props(['errors']) | ||||
| 
 | ||||
| @if ($errors->any()) | ||||
|     <div {{ $attributes }}> | ||||
|         <div class="alert alert-danger"> | ||||
|             {{ __('Whoops! Something went wrong.') }} | ||||
|             <ul> | ||||
|                 @foreach ($errors->all() as $error) | ||||
|                     <li>{{ $error }}</li> | ||||
|                 @endforeach | ||||
|             </ul> | ||||
|         </div> | ||||
|     </div> | ||||
| @endif | ||||
							
								
								
									
										1
									
								
								resources/views/components/back-button.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								resources/views/components/back-button.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| <a href="{{$href}}" class="btn btn-primary py-0 px-4 mb-4">{{$slot}}</a> | ||||
							
								
								
									
										3
									
								
								resources/views/components/button.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								resources/views/components/button.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| <button {{ $attributes->merge(['type' => 'submit', 'class' => 'inline-flex items-center px-4 py-2 bg-gray-800 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-gray-700 active:bg-gray-900 focus:outline-none focus:border-gray-900 focus:ring ring-gray-300 disabled:opacity-25 transition ease-in-out duration-150']) }}> | ||||
|     {{ $slot }} | ||||
| </button> | ||||
							
								
								
									
										5
									
								
								resources/views/components/card.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								resources/views/components/card.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| <div class="card {{ $class ?? '' }}"> | ||||
|     <div class="card-body"> | ||||
|         {{ $slot }} | ||||
|     </div> | ||||
| </div> | ||||
							
								
								
									
										7
									
								
								resources/views/components/cont-card.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										7
									
								
								resources/views/components/cont-card.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,7 @@ | |||
| <div class="container"> | ||||
|     <div class="card shadow mt-3"> | ||||
|         <div class="card-body"> | ||||
| 
 | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
							
								
								
									
										12
									
								
								resources/views/components/currency-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										12
									
								
								resources/views/components/currency-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,12 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{ $title ??'Currency'}}</span></div> | ||||
|     <select class="form-control" name="{{$name ?? 'currency'}}"> | ||||
|         <option value="AUD" {{(isset($current) && (string)$current === 'AUD')? 'selected' : ''}}>AUD</option> | ||||
|         <option value="USD" {{(isset($current) && (string)$current === 'USD')? 'selected' : ''}}>USD</option> | ||||
|         <option value="GBP" {{(isset($current) && (string)$current === 'GBP')? 'selected' : ''}}>GBP</option> | ||||
|         <option value="EUR" {{(isset($current) && (string)$current === 'EUR')? 'selected' : ''}}>EUR</option> | ||||
|         <option value="NZD" {{(isset($current) && (string)$current === 'NZD')? 'selected' : ''}}>NZD</option> | ||||
|         <option value="JPY" {{(isset($current) && (string)$current === 'JPY')? 'selected' : ''}}>JPY</option> | ||||
|         <option value="CAD" {{(isset($current) && (string)$current === 'CAD')? 'selected' : ''}}>CAD</option> | ||||
|     </select> | ||||
| </div> | ||||
							
								
								
									
										3
									
								
								resources/views/components/datatables-assets.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								resources/views/components/datatables-assets.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| <script src="{{ asset('js/jquery.min.js') }}"></script> | ||||
| <script src="{{ asset('js/datatables.min.js') }}" defer></script> | ||||
| <script src="{{ asset('js/datatables.bootstrap5.min.js') }}" defer></script> | ||||
							
								
								
									
										5
									
								
								resources/views/components/date-input.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								resources/views/components/date-input.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div> | ||||
|     <input type="date" name="{{$name}}" class="form-control" | ||||
|            value="{{$value ?? ''}}" {{(isset($required))? 'required': ''}}> | ||||
| </div> | ||||
							
								
								
									
										39
									
								
								resources/views/components/delete-confirm-modal.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										39
									
								
								resources/views/components/delete-confirm-modal.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,39 @@ | |||
| <div v-if="showModal"> | ||||
|         <transition name="modal"> | ||||
|         <div class="modal-mask"> | ||||
|             <div class="modal-wrapper"> | ||||
|                 <div class="modal-dialog"> | ||||
|                     <div class="modal-content"> | ||||
|                         <div class="modal-header py-1"> | ||||
|                             <h4 class="modal-title" id="modal-title" v-html="modal_hostname"></h4> | ||||
|                         </div> | ||||
|                         <div class="modal-body text-center"> | ||||
|                             Are you sure you want to delete this? | ||||
|                             <form :action=delete_form_action method="POST"> | ||||
|                                 @csrf | ||||
|                                 @method('DELETE') | ||||
| 
 | ||||
|                                 <input type="hidden" id="id" name="id" value="" v-model="modal_id"> | ||||
|                                 <div class="row mt-2"> | ||||
|                                     <div class="col-6"> | ||||
|                                         <button type="submit" title="delete" | ||||
|                                                 class="btn btn-danger px-3 py-1 mt-2 mt-2"> | ||||
|                                             Yes | ||||
|                                         </button> | ||||
|                                     </div> | ||||
|                                     <div class="col-6"> | ||||
| 
 | ||||
|                                         <button type="submit" title="delete" | ||||
|                                                 class="btn btn-success px-3 py-1 mt-2 ms-4" @click="showModal=false"> | ||||
|                                             No | ||||
|                                         </button> | ||||
|                                     </div> | ||||
|                                 </div> | ||||
|                             </form> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </transition> | ||||
| </div> | ||||
							
								
								
									
										6
									
								
								resources/views/components/disk-type-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								resources/views/components/disk-type-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,6 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div> | ||||
|     <select class="form-control" name="{{$name}}"> | ||||
|         <option value="GB" {{(isset($value) && $value == 'GB')? 'selected': ''}}>GB</option> | ||||
|         <option value="TB" {{(isset($value) && $value == 'TB')? 'selected': ''}}>TB</option> | ||||
|     </select></div> | ||||
							
								
								
									
										1
									
								
								resources/views/components/dropdown-link.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										1
									
								
								resources/views/components/dropdown-link.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1 @@ | |||
| <a {{ $attributes->merge(['class' => 'block px-4 py-2 text-sm leading-5 text-gray-700 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 transition duration-150 ease-in-out']) }}>{{ $slot }}</a> | ||||
							
								
								
									
										43
									
								
								resources/views/components/dropdown.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										43
									
								
								resources/views/components/dropdown.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,43 @@ | |||
| @props(['align' => 'right', 'width' => '48', 'contentClasses' => 'py-1 bg-white']) | ||||
| 
 | ||||
| @php | ||||
| switch ($align) { | ||||
|     case 'left': | ||||
|         $alignmentClasses = 'origin-top-left left-0'; | ||||
|         break; | ||||
|     case 'top': | ||||
|         $alignmentClasses = 'origin-top'; | ||||
|         break; | ||||
|     case 'right': | ||||
|     default: | ||||
|         $alignmentClasses = 'origin-top-right right-0'; | ||||
|         break; | ||||
| } | ||||
| 
 | ||||
| switch ($width) { | ||||
|     case '48': | ||||
|         $width = 'w-48'; | ||||
|         break; | ||||
| } | ||||
| @endphp | ||||
| 
 | ||||
| <div class="relative" x-data="{ open: false }" @click.outside="open = false" @close.stop="open = false"> | ||||
|     <div @click="open = ! open"> | ||||
|         {{ $trigger }} | ||||
|     </div> | ||||
| 
 | ||||
|     <div x-show="open" | ||||
|             x-transition:enter="transition ease-out duration-200" | ||||
|             x-transition:enter-start="transform opacity-0 scale-95" | ||||
|             x-transition:enter-end="transform opacity-100 scale-100" | ||||
|             x-transition:leave="transition ease-in duration-75" | ||||
|             x-transition:leave-start="transform opacity-100 scale-100" | ||||
|             x-transition:leave-end="transform opacity-0 scale-95" | ||||
|             class="absolute z-50 mt-2 {{ $width }} rounded-md shadow-lg {{ $alignmentClasses }}" | ||||
|             style="display: none;" | ||||
|             @click="open = false"> | ||||
|         <div class="rounded-md ring-1 ring-black ring-opacity-5 {{ $contentClasses }}"> | ||||
|             {{ $content }} | ||||
|         </div> | ||||
|     </div> | ||||
| </div> | ||||
							
								
								
									
										9
									
								
								resources/views/components/errors-alert.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										9
									
								
								resources/views/components/errors-alert.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,9 @@ | |||
| @if ($errors->any()) | ||||
| <div class="alert alert-danger"> | ||||
|     <ul> | ||||
|         @foreach ($errors->all() as $error) | ||||
|         <li>{{ $error }}</li> | ||||
|         @endforeach | ||||
|     </ul> | ||||
| </div> | ||||
| @endif | ||||
							
								
								
									
										42
									
								
								resources/views/components/form-style.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										42
									
								
								resources/views/components/form-style.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,42 @@ | |||
| <style> | ||||
|     html, | ||||
|     body { | ||||
|         height: 100%; | ||||
|     } | ||||
| 
 | ||||
|     body { | ||||
|         display: grid; | ||||
|         align-items: center; | ||||
|     } | ||||
| 
 | ||||
|     .form-signin { | ||||
|         width: 100%; | ||||
|         max-width: 330px; | ||||
|         padding: 15px; | ||||
|         margin: auto; | ||||
|     } | ||||
| 
 | ||||
|     .form-signin .checkbox { | ||||
|         font-weight: 400; | ||||
|     } | ||||
| 
 | ||||
|     .form-signin .form-floating:focus-within { | ||||
|         z-index: 2; | ||||
|     } | ||||
| 
 | ||||
|     .form-signin input[type="email"] { | ||||
|         margin-bottom: -1px; | ||||
|         border-bottom-right-radius: 0; | ||||
|         border-bottom-left-radius: 0; | ||||
|     } | ||||
| 
 | ||||
|     .form-signin input[type="password"] { | ||||
|         margin-bottom: 10px; | ||||
|         border-top-left-radius: 0; | ||||
|         border-top-right-radius: 0; | ||||
|     } | ||||
| 
 | ||||
|     .form-floating > label { | ||||
|         padding: 0.2rem .5rem; | ||||
|     } | ||||
| </style> | ||||
							
								
								
									
										3
									
								
								resources/views/components/input.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								resources/views/components/input.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| @props(['disabled' => false]) | ||||
| 
 | ||||
| <input {{ $disabled ? 'disabled' : '' }} {!! $attributes->merge(['class' => 'form-control']) !!}> | ||||
							
								
								
									
										5
									
								
								resources/views/components/label.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								resources/views/components/label.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| @props(['value']) | ||||
| 
 | ||||
| <label {{ $attributes->merge(['class' => 'small text-muted']) }}> | ||||
|     {{ $value ?? $slot }} | ||||
| </label> | ||||
							
								
								
									
										11
									
								
								resources/views/components/labels-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								resources/views/components/labels-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,11 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div> | ||||
|     <select class="form-control" name="{{$name}}"> | ||||
|         <option value=""></option> | ||||
|         @foreach ($labels as $label) | ||||
|             <option value="{{ $label['id'] }}" {{(isset($current) && $current == $label['id'])? 'selected' : ''}}> | ||||
|                 {{ $label['label']}} | ||||
|             </option> | ||||
|         @endforeach | ||||
|     </select> | ||||
| </div> | ||||
							
								
								
									
										10
									
								
								resources/views/components/locations-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								resources/views/components/locations-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,10 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{ $title ??'Location'}}</span></div> | ||||
|     <select class="form-control" name="{{$name ?? 'location_id'}}"> | ||||
|         @foreach ($locations as $location) | ||||
|             <option value="{{ $location['id'] }}" {{(isset($current) && (string)$current === (string)$location['id'])? 'selected' : ''}}> | ||||
|                 {{ $location['name'] }} | ||||
|             </option> | ||||
|         @endforeach | ||||
|     </select> | ||||
| </div> | ||||
							
								
								
									
										18
									
								
								resources/views/components/login-card.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										18
									
								
								resources/views/components/login-card.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,18 @@ | |||
| <div class="card {{ $class ?? '' }}"> | ||||
|     @isset($header) | ||||
|         <div class="card-header"> | ||||
|             {!! $header !!} | ||||
|         </div> | ||||
|     @endisset | ||||
|     @isset($body) | ||||
|         <div class="card-body pb-0"> | ||||
|             {!! $body !!} | ||||
|             {{ $slot }} | ||||
|         </div> | ||||
|     @endisset | ||||
|     @isset($footer) | ||||
|         <div class="card-footer"> | ||||
|             {!! $footer !!} | ||||
|         </div> | ||||
|     @endisset | ||||
| </div> | ||||
							
								
								
									
										19
									
								
								resources/views/components/modal-delete-script.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										19
									
								
								resources/views/components/modal-delete-script.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,19 @@ | |||
| <script> | ||||
|     let app = new Vue({ | ||||
|         el: "#app", | ||||
|         data: { | ||||
|             "modal_hostname": '', | ||||
|             "modal_id": '', | ||||
|             "delete_form_action": '', | ||||
|             showModal: false | ||||
|         }, | ||||
|         methods: { | ||||
|             modalForm(event) { | ||||
|                 this.showModal = true; | ||||
|                 this.modal_hostname = event.target.id.replace('btn-', ''); | ||||
|                 this.modal_id = event.target.title; | ||||
|                 this.delete_form_action = '{{$uri}}/' + this.modal_id; | ||||
|             } | ||||
|         } | ||||
|     }); | ||||
| </script> | ||||
							
								
								
									
										32
									
								
								resources/views/components/modal-style.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										32
									
								
								resources/views/components/modal-style.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,32 @@ | |||
| <style> | ||||
|     .modal-mask { | ||||
|         position: fixed; | ||||
|         z-index: 9998; | ||||
|         top: 0; | ||||
|         left: 0; | ||||
|         width: 100%; | ||||
|         height: 100%; | ||||
|         background-color: rgba(0, 0, 0, .5); | ||||
|         transition: opacity .3s ease; | ||||
|     } | ||||
| 
 | ||||
|     .modal-container { | ||||
|         width: 300px; | ||||
|         margin: 40px auto 0; | ||||
|         padding: 20px 30px; | ||||
|         background-color: #fff;
 | ||||
|         border-radius: 2px; | ||||
|         box-shadow: 0 2px 8px rgba(0, 0, 0, .33); | ||||
|         transition: all .3s ease; | ||||
|         font-family: Helvetica, Arial, sans-serif; | ||||
|     } | ||||
| 
 | ||||
|     .modal-header h3 { | ||||
|         margin-top: 0; | ||||
|         color: #42b983;
 | ||||
|     } | ||||
| 
 | ||||
|     .modal-body { | ||||
|         margin: 20px 0; | ||||
|     } | ||||
| </style> | ||||
							
								
								
									
										13
									
								
								resources/views/components/nav-link.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										13
									
								
								resources/views/components/nav-link.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,13 @@ | |||
| @props(['active']) | ||||
| 
 | ||||
| @php | ||||
|     $classes = ($active ?? false) | ||||
|                 ? 'nav-link active' | ||||
|                 : 'nav-link'; | ||||
| @endphp | ||||
| 
 | ||||
| <li class="nav-item"> | ||||
|     <a {{ $attributes->merge(['class' => $classes]) }}> | ||||
|         {{ $slot }} | ||||
|     </a> | ||||
| </li> | ||||
							
								
								
									
										5
									
								
								resources/views/components/number-input.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								resources/views/components/number-input.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div> | ||||
|     <input type="number" name="{{$name}}" class="form-control" min="{{$min ?? 0}}" max="{{$max ?? 99999}}" | ||||
|            step="{{$step ?? 1}}" value="{{$value ?? ''}}" {{(isset($required))? 'required': ''}}> | ||||
| </div> | ||||
							
								
								
									
										10
									
								
								resources/views/components/os-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								resources/views/components/os-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,10 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{ $title ??'OS'}}</span></div> | ||||
|     <select class="form-control" name="{{$name ?? 'os_id'}}"> | ||||
|         @foreach ($os as $o) | ||||
|             <option value="{{ $o['id'] }}" {{(isset($current) && (string)$current === (string)$o['id'])? 'selected' : ''}}> | ||||
|                 {{ $o['name'] }} | ||||
|             </option> | ||||
|         @endforeach | ||||
|     </select> | ||||
| </div> | ||||
							
								
								
									
										3
									
								
								resources/views/components/pricing-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										3
									
								
								resources/views/components/pricing-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,3 @@ | |||
| <div> | ||||
|     <!-- Walk as if you are kissing the Earth with your feet. - Thich Nhat Hanh --> | ||||
| </div> | ||||
							
								
								
									
										10
									
								
								resources/views/components/providers-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										10
									
								
								resources/views/components/providers-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,10 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{ $title ??'Provider'}}</span></div> | ||||
|     <select class="form-control" name="{{$name ?? 'provider_id'}}"> | ||||
|         @foreach ($providers as $provider) | ||||
|             <option value="{{ $provider['id'] }}" {{(isset($current) && (string)$current === (string)$provider['id'])? 'selected' : ''}}> | ||||
|                 {{ $provider['name'] }} | ||||
|             </option> | ||||
|         @endforeach | ||||
|     </select> | ||||
| </div> | ||||
							
								
								
									
										6
									
								
								resources/views/components/ram-type-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								resources/views/components/ram-type-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,6 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div> | ||||
|     <select class="form-control" name="{{$name}}"> | ||||
|         <option value="MB" {{(isset($value) && $value == 'MB')? 'selected': ''}}>MB</option> | ||||
|         <option value="GB" {{(isset($value) && $value == 'GB')? 'selected': ''}}>GB</option> | ||||
|     </select></div> | ||||
							
								
								
									
										11
									
								
								resources/views/components/responsive-nav-link.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								resources/views/components/responsive-nav-link.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,11 @@ | |||
| @props(['active']) | ||||
| 
 | ||||
| @php | ||||
| $classes = ($active ?? false) | ||||
|             ? 'text-decoration-none' | ||||
|             : 'text-decoration-none'; | ||||
| @endphp | ||||
| 
 | ||||
| <a {{ $attributes->merge(['class' => $classes]) }}> | ||||
|     {{ $slot }} | ||||
| </a> | ||||
							
								
								
									
										4
									
								
								resources/views/components/submit-button.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										4
									
								
								resources/views/components/submit-button.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,4 @@ | |||
| <button type="submit" | ||||
|         class="btn btn-success py-0 px-4 mt-2"> | ||||
|     {{$slot}} | ||||
| </button> | ||||
							
								
								
									
										5
									
								
								resources/views/components/success-alert.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								resources/views/components/success-alert.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| @if ($message = Session::get('success')) | ||||
|     <div class="alert alert-success" role="alert"> | ||||
|         <p class="my-1">{{ $message }}</p> | ||||
|     </div> | ||||
| @endif | ||||
							
								
								
									
										11
									
								
								resources/views/components/term-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										11
									
								
								resources/views/components/term-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,11 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{ $title ??'Term'}}</span></div> | ||||
|     <select class="form-control" name="{{$name ?? 'payment_term'}}"> | ||||
|         <option value="1" {{(isset($current) && (string)$current === '1')? 'selected' : ''}}>Monthly</option> | ||||
|         <option value="2" {{(isset($current) && (string)$current === '2')? 'selected' : ''}}>Quarterly</option> | ||||
|         <option value="3" {{(isset($current) && (string)$current === '3')? 'selected' : ''}}>Half annual (half year)</option> | ||||
|         <option value="4" {{(isset($current) && (string)$current === '4')? 'selected' : ''}}>Annual (yearly)</option> | ||||
|         <option value="5" {{(isset($current) && (string)$current === '5')? 'selected' : ''}}>Biennial (2 years)</option> | ||||
|         <option value="6" {{(isset($current) && (string)$current === '6')? 'selected' : ''}}>Triennial (3 years)</option> | ||||
|     </select> | ||||
| </div> | ||||
							
								
								
									
										5
									
								
								resources/views/components/text-input.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										5
									
								
								resources/views/components/text-input.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,5 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div> | ||||
|     <input type="text" name="{{$name}}" class="form-control" minlength="{{$min ?? 0}}" maxlength="{{$max ?? 99999}}" | ||||
|            value="{{$value ?? ''}}" {{(isset($required))? 'required': ''}}> | ||||
| </div> | ||||
							
								
								
									
										6
									
								
								resources/views/components/yes-no-select.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										6
									
								
								resources/views/components/yes-no-select.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,6 @@ | |||
| <div class="input-group"> | ||||
|     <div class="input-group-prepend"><span class="input-group-text">{{$title}}</span></div> | ||||
|     <select class="form-control" name="{{$name}}"> | ||||
|         <option value="1" {{(isset($value) && $value == '1')? 'selected': ''}}>Yes</option> | ||||
|         <option value="0" {{(isset($value) && $value == '0')? 'selected': ''}}>No</option> | ||||
|     </select></div> | ||||
							
								
								
									
										17
									
								
								resources/views/dashboard.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								resources/views/dashboard.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,17 @@ | |||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         <h2 class="font-semibold text-xl text-gray-800 leading-tight"> | ||||
|             {{ __('Dashboard') }} | ||||
|         </h2> | ||||
|     </x-slot> | ||||
| 
 | ||||
|     <div class="py-12"> | ||||
|         <div class="max-w-7xl mx-auto sm:px-6 lg:px-8"> | ||||
|             <div class="bg-white overflow-hidden shadow-sm sm:rounded-lg"> | ||||
|                 <div class="p-6 bg-white border-b border-gray-200"> | ||||
|                     You're logged in! | ||||
|                 </div> | ||||
|             </div> | ||||
|         </div> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										133
									
								
								resources/views/dns/create.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										133
									
								
								resources/views/dns/create.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,133 @@ | |||
| @section('title') {{'Insert DNS'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         {{ __('Insert a new DNS') }} | ||||
|     </x-slot> | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <h4 class="mb-3">DNS information</h4> | ||||
|             <x-back-button> | ||||
|                 <x-slot name="href">{{ route('dns.index') }}</x-slot> | ||||
|                 Go back | ||||
|             </x-back-button> | ||||
|             <x-errors-alert></x-errors-alert> | ||||
|             <form action="{{ route('dns.store') }}" method="POST"> | ||||
|                 @csrf | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Hostname</span></div> | ||||
|                             <input type="text" | ||||
|                                    class="form-control" | ||||
|                                    name="hostname" required> | ||||
|                             @error('name') <span class="text-red-500">{{ $message }} | ||||
|                     </span>@enderror | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">address</x-slot> | ||||
|                             <x-slot name="name">address</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Type</span></div> | ||||
|                             <select class="form-control" name="dns_type"> | ||||
|                                 <option value="A" selected>A</option> | ||||
|                                 <option value="AAAA">AAAA</option> | ||||
|                                 <option value="DNAME">DNAME</option> | ||||
|                                 <option value="MX">MX</option> | ||||
|                                 <option value="NS">NS</option> | ||||
|                                 <option value="SOA">SOA</option> | ||||
|                                 <option value="TXT">TXT</option> | ||||
|                                 <option value="URI">URI</option> | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mb-2"> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label1</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label2</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label3</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label4</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <p>Related to:</p> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Server</span></div> | ||||
|                             <select class="form-control" name="server_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Servers as $server) | ||||
|                                     <option value="{{ $server['id'] }}"> | ||||
|                                         {{ $server['hostname'] }} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Shared</span></div> | ||||
|                             <select class="form-control" name="shared_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Shareds as $shared) | ||||
|                                     <option value="{{ $shared['id'] }}"> | ||||
|                                         {{ $shared['hostname'] }} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Reseller</span></div> | ||||
|                             <select class="form-control" name="reseller_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Resellers as $reseller) | ||||
|                                     <option value="{{ $reseller['id'] }}"> | ||||
|                                         {{ $reseller['hostname'] }} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Domain</span></div> | ||||
|                             <select class="form-control" name="domain_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Domains as $domain) | ||||
|                                     <option value="{{ $domain['id'] }}"> | ||||
|                                         {{ $domain['domain'] }}.{{$domain['extension']}} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-4"> | ||||
|                         <x-submit-button>Insert DNS</x-submit-button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </form> | ||||
|         </x-card> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										149
									
								
								resources/views/dns/edit.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										149
									
								
								resources/views/dns/edit.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,149 @@ | |||
| @section('title') {{'Edit'}} {{ $dn->hostname }} {{$dn->dns_type}} {{'DNS'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         Edit {{ $dn->hostname }} {{$dn->dns_type}} record | ||||
|     </x-slot> | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <h4 class="mb-3">DNS information</h4> | ||||
|             <x-back-button> | ||||
|                 <x-slot name="href">{{ route('dns.index') }}</x-slot> | ||||
|                 Go back | ||||
|             </x-back-button> | ||||
|             <x-errors-alert></x-errors-alert> | ||||
|             <form action="{{ route('dns.update', $dn->id) }}" method="POST"> | ||||
|                 @csrf | ||||
|                 @method('PUT') | ||||
|                 <div class="row mt-4"> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Hostname</span></div> | ||||
|                             <input type="text" | ||||
|                                    class="form-control" | ||||
|                                    name="hostname" | ||||
|                                    value="{{ $dn->hostname }}"> | ||||
|                             @error('name') <span class="text-red-500">{{ $message }} | ||||
|                     </span>@enderror | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Address</span></div> | ||||
|                             <input type="text" name="address" class="form-control" minlength="1" | ||||
|                                    maxlength="124" value="{{ $dn->address }}"> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Type</span></div> | ||||
|                             <select class="form-control" name="dns_type"> | ||||
|                                 @foreach (App\Models\DNS::$dns_types as $item) | ||||
|                                     <option | ||||
|                                         value="{{ $item }}" {{ ( $item == $dn->dns_type) ? 'selected' : '' }}> {{ $item }} </option> | ||||
|                                 @endforeach | ||||
|                             </select> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mb-2"> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label1</x-slot> | ||||
|                             @if(isset($labels[0]->id)) | ||||
|                                 <x-slot name="current">{{$labels[0]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label2</x-slot> | ||||
|                             @if(isset($labels[1]->id)) | ||||
|                                 <x-slot name="current">{{$labels[1]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label3</x-slot> | ||||
|                             @if(isset($labels[2]->id)) | ||||
|                                 <x-slot name="current">{{$labels[2]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label4</x-slot> | ||||
|                             @if(isset($labels[3]->id)) | ||||
|                                 <x-slot name="current">{{$labels[3]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mt-2"> | ||||
|                     <p>Related to:</p> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Server</span></div> | ||||
|                             <select class="form-control" name="server_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Servers as $server) | ||||
|                                     <option | ||||
|                                         value="{{ $server['id'] }}" {{($server['id'] == $dn->server_id)? 'selected':''}}> | ||||
|                                         {{ $server['hostname'] }} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Shared</span></div> | ||||
|                             <select class="form-control" name="shared_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Shareds as $shared) | ||||
|                                     <option | ||||
|                                         value="{{ $shared['id'] }}" {{($shared['id'] == $dn->shared_id)? 'selected':''}}> | ||||
|                                         {{ $shared['hostname'] }} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Reseller</span></div> | ||||
|                             <select class="form-control" name="reseller_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Resellers as $reseller) | ||||
|                                     <option | ||||
|                                         value="{{ $reseller['id'] }}" {{($reseller['id'] == $dn->reseller_id)? 'selected':''}}> | ||||
|                                         {{ $reseller['hostname'] }} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Domain</span></div> | ||||
|                             <select class="form-control" name="domain_id"> | ||||
|                                 <option value="null"></option> | ||||
|                                 @foreach ($Domains as $domain) | ||||
|                                     <option | ||||
|                                         value="{{ $domain['id'] }}" {{($domain['id'] == $dn->domain_id)? 'selected':''}}> | ||||
|                                         {{ $domain['domain'] }}.{{$domain['extension']}} | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mt-2"> | ||||
|                     <div class="col-12 col-lg-4"> | ||||
|                         <x-submit-button>Update DNS</x-submit-button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </form> | ||||
|         </x-card> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										70
									
								
								resources/views/dns/index.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										70
									
								
								resources/views/dns/index.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,70 @@ | |||
| @section('title') {{'DNS'}} @endsection | ||||
| @section('style') | ||||
|     <x-modal-style></x-modal-style> | ||||
| @endsection | ||||
| @section('scripts') | ||||
|     <script src="{{ asset('js/vue.min.js') }}"></script> | ||||
|     <script src="{{ asset('js/axios.min.js') }}"></script> | ||||
| @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         {{ __('DNS') }} | ||||
|     </x-slot> | ||||
|     <div class="container" id="app"> | ||||
|         <x-delete-confirm-modal></x-delete-confirm-modal> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <a href="{{ route('dns.create') }}" class="btn btn-primary mb-3">Add DNS</a> | ||||
|             <x-success-alert></x-success-alert> | ||||
|             <div class="table-responsive"> | ||||
|                 <table class="table table-bordered"> | ||||
|                     <thead class="table-light"> | ||||
|                     <tr> | ||||
|                         <th class="text-nowrap">Type</th> | ||||
|                         <th class="text-nowrap">Hostname</th> | ||||
|                         <th class="text-nowrap">Address</th> | ||||
|                         <th class="text-nowrap">Actions</th> | ||||
|                     </tr> | ||||
|                     </thead> | ||||
|                     <tbody> | ||||
|                     @if(!empty($dn[0])) | ||||
|                         @foreach($dn as $dns) | ||||
|                             <tr> | ||||
|                                 <td class="text-nowrap">{{ $dns->dns_type}}</td> | ||||
|                                 <td class="text-nowrap">{{ $dns->hostname}}</td> | ||||
|                                 <td class="text-nowrap">{{ $dns->address}}</td> | ||||
|                                 <td class="text-nowrap"> | ||||
|                                     <form action="{{ route('dns.destroy', $dns->id) }}" method="POST"> | ||||
|                                         <a href="{{ route('dns.show', $dns->id) }}" | ||||
|                                            class="text-body mx-1"> | ||||
|                                             <i class="fas fa-eye" title="view"></i></a> | ||||
|                                         <a href="{{ route('dns.edit', $dns->id) }}" | ||||
|                                            class="text-body mx-1"> | ||||
|                                             <i class="fas fa-pen" title="edit"></i></a> | ||||
|                                         @csrf | ||||
|                                         @method('DELETE') | ||||
|                                         <i class="fas fa-trash text-danger ms-3" @click="modalForm" | ||||
|                                            id="btn-{{$dns->hostname}}" title="{{$dns->id}}"></i> | ||||
|                                     </form> | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                         @endforeach | ||||
|                     @else | ||||
|                         <tr> | ||||
|                             <td class="px-4 py-2 border text-red-500" colspan="3">No DNSes found.</td> | ||||
|                         </tr> | ||||
|                     @endif | ||||
|                     </tbody> | ||||
|                 </table> | ||||
|             </div> | ||||
|         </x-card> | ||||
|         @if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1) | ||||
|             <p class="text-muted mt-4 text-end"><small> | ||||
|                     Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }} | ||||
|                     )</small> | ||||
|             </p> | ||||
|         @endif | ||||
|     </div> | ||||
|     <x-modal-delete-script> | ||||
|         <x-slot name="uri">dns</x-slot> | ||||
|     </x-modal-delete-script> | ||||
| </x-app-layout> | ||||
							
								
								
									
										102
									
								
								resources/views/dns/show.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										102
									
								
								resources/views/dns/show.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,102 @@ | |||
| @section('title') {{ $dns->hostname }} {{$dns->dns_type}} {{'dns'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         {{ __('DNS details') }} | ||||
|     </x-slot> | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <div class="row"> | ||||
|                 <div class="col-12 col-md-6 mb-2"> | ||||
|                     <h2>{{ $dns->hostname}}</h2> | ||||
|                     <code>@foreach($labels as $label) | ||||
|                             @if($loop->last) | ||||
|                                 {{$label->label}} | ||||
|                             @else | ||||
|                                 {{$label->label}}, | ||||
|                             @endif | ||||
|                         @endforeach</code> | ||||
|                 </div> | ||||
|                 <div class="col-12 col-md-6 text-md-end"> | ||||
|                     <h6 class="text-muted pe-lg-4">{{$dns->id }}</h6> | ||||
|                 </div> | ||||
|             </div> | ||||
|             <div class="row"> | ||||
|                 <div class="col-12 col-lg-6"> | ||||
|                     <div class="table-responsive"> | ||||
|                         <table class="table table-borderless text-nowrap"> | ||||
|                             <tbody> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Type</td> | ||||
|                                 <td>{{ $dns->dns_type }}</td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Name</td> | ||||
|                                 <td>{{ $dns->hostname }}</td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Address</td> | ||||
|                                 <td><code>{{ $dns->address }}</code></td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Server</td> | ||||
|                                 <td> | ||||
|                                     @if(isset($dns->server_id)) | ||||
|                                         <a href="{{route('servers.show', $dns->server_id )}}">{{ $dns->server_id }}</a> | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Shared</td> | ||||
|                                 <td> | ||||
|                                     @if(isset($dns->shared_id)) | ||||
|                                         <a href="{{route('shared.show', $dns->shared_id )}}">{{ $dns->shared_id }}</a> | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Reseller</td> | ||||
|                                 <td> | ||||
|                                     @if(isset($dns->reseller_id)) | ||||
|                                         <a href="{{route('resellers.show', $dns->reseller_id )}}">{{ $dns->reseller_id }}</a> | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Domain</td> | ||||
|                                 <td> | ||||
|                                     @if(isset($dns->domain_id)) | ||||
|                                         <a href="{{route('domains.show', $dns->domain_id )}}">{{ $dns->domain_id }}</a> | ||||
|                                     @endif</td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Inserted</td> | ||||
|                                 <td> | ||||
|                                     @if(!is_null($dns->created_at)) | ||||
|                                         {{ date_format(new DateTime($dns->created_at), 'jS M y g:i a') }} | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Updated</td> | ||||
|                                 <td> | ||||
|                                     @if(!is_null($dns->updated_at)) | ||||
|                                         {{ date_format(new DateTime($dns->updated_at), 'jS M y g:i a') }} | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             </tbody> | ||||
|                         </table> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|             <a href="{{ route('dns.index') }}" | ||||
|                class="btn btn-success btn-sm mx-2"> | ||||
|                 Go back | ||||
|             </a> | ||||
|             <a href="{{ route('dns.edit', $dns->id) }}" | ||||
|                class="btn btn-primary btn-sm mx-2"> | ||||
|                 Edit | ||||
|             </a> | ||||
|         </x-card> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										137
									
								
								resources/views/domains/create.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										137
									
								
								resources/views/domains/create.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,137 @@ | |||
| @section('title') {{'Insert domain'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         {{ __('Insert a new domain') }} | ||||
|     </x-slot> | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <h4 class="mb-3">Domain information</h4> | ||||
|             <x-back-button> | ||||
|                 <x-slot name="href">{{ route('domains.index') }}</x-slot> | ||||
|                 Go back | ||||
|             </x-back-button> | ||||
|             <x-errors-alert></x-errors-alert> | ||||
|             <form action="{{ route('domains.store') }}" method="POST"> | ||||
|                 @csrf | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-6 mb-4"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Domain</span></div> | ||||
|                             <input type="text" | ||||
|                                    class="form-control" | ||||
|                                    name="domain" | ||||
|                                    placeholder="Enter domain name without extension"> | ||||
|                             @error('name') <span class="text-red-500">{{ $message }} | ||||
|                     </span>@enderror | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-3"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">extension</x-slot> | ||||
|                             <x-slot name="name">extension</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                             <x-slot name="value">com</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">NS1</x-slot> | ||||
|                             <x-slot name="name">ns1</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">NS2</x-slot> | ||||
|                             <x-slot name="name">ns2</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">NS3</x-slot> | ||||
|                             <x-slot name="name">ns3</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <x-providers-select> | ||||
|                             <x-slot name="current">1</x-slot> | ||||
|                         </x-providers-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-md-3 mb-3"> | ||||
|                         <x-number-input> | ||||
|                             <x-slot name="title">Price</x-slot> | ||||
|                             <x-slot name="name">price</x-slot> | ||||
|                             <x-slot name="value">9.99</x-slot> | ||||
|                             <x-slot name="max">9999</x-slot> | ||||
|                             <x-slot name="step">0.01</x-slot> | ||||
|                             <x-slot name="required"></x-slot> | ||||
|                         </x-number-input> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <x-term-select> | ||||
|                             <x-slot name="current">4</x-slot> | ||||
|                         </x-term-select> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <x-currency-select> | ||||
|                             <x-slot name="current">{{Session::get('default_currency')}}</x-slot> | ||||
|                         </x-currency-select> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mb-2"> | ||||
|                     <div class="col-12 col-md-4 mb-3"> | ||||
|                         <x-date-input> | ||||
|                             <x-slot name="title">Owned since</x-slot> | ||||
|                             <x-slot name="name">owned_since</x-slot> | ||||
|                             <x-slot name="value">{{Carbon\Carbon::now()->subDays(30)->format('Y-m-d') }}</x-slot> | ||||
|                         </x-date-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-md-4 mb-3"> | ||||
|                         <x-date-input> | ||||
|                             <x-slot name="title">Next due date</x-slot> | ||||
|                             <x-slot name="name">next_due_date</x-slot> | ||||
|                             <x-slot name="value">{{Carbon\Carbon::now()->addDays(30)->format('Y-m-d') }}</x-slot> | ||||
|                         </x-date-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mb-2"> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label1</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label2</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label3</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label4</x-slot> | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-4"> | ||||
|                         <x-submit-button>Insert domain</x-submit-button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </form> | ||||
|         </x-card> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										162
									
								
								resources/views/domains/edit.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										162
									
								
								resources/views/domains/edit.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,162 @@ | |||
| @section('title') {{'Edit domain'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         Edit {{ $domain->domain }}.{{ $domain->extension }} | ||||
|     </x-slot> | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <h4 class="mb-3">Domain information</h4> | ||||
|             <x-back-button> | ||||
|                 <x-slot name="href">{{ route('domains.index') }}</x-slot> | ||||
|                 Go back | ||||
|             </x-back-button> | ||||
|             <x-errors-alert></x-errors-alert> | ||||
|             <form action="{{ route('domains.update', $domain->id) }}" method="POST"> | ||||
|                 @csrf | ||||
|                 @method('PUT') | ||||
|                 <div class="row mt-4"> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <input type="hidden" value="1" name="service_type"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">domain</span></div> | ||||
|                             <input type="text" | ||||
|                                    class="form-control" | ||||
|                                    name="domain" | ||||
|                                    value="{{ $domain->domain }}"> | ||||
|                             @error('name') <span class="text-red-500">{{ $message }} | ||||
|                     </span>@enderror | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">Extension</x-slot> | ||||
|                             <x-slot name="name">extension</x-slot> | ||||
|                             <x-slot name="value">{{ $domain->extension }}</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">NS1</x-slot> | ||||
|                             <x-slot name="name">ns1</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                             <x-slot name="value">{{$domain->ns1}}</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">NS2</x-slot> | ||||
|                             <x-slot name="name">ns2</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                             <x-slot name="value">{{$domain->ns2}}</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">NS3</x-slot> | ||||
|                             <x-slot name="name">ns3</x-slot> | ||||
|                             <x-slot name="max">255</x-slot> | ||||
|                             <x-slot name="value">{{$domain->ns3}}</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <x-providers-select> | ||||
|                             <x-slot name="current"> | ||||
|                                 {{$domain->provider_id}} | ||||
|                             </x-slot> | ||||
|                         </x-providers-select> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <x-number-input> | ||||
|                             <x-slot name="title">Price</x-slot> | ||||
|                             <x-slot name="name">price</x-slot> | ||||
|                             <x-slot name="step">0.01</x-slot> | ||||
|                             <x-slot name="value">{{ $domain_info[0]->price }}</x-slot> | ||||
|                         </x-number-input> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <x-term-select> | ||||
|                             <x-slot name="current">{{$domain_info[0]->term}}</x-slot> | ||||
|                         </x-term-select> | ||||
|                     </div> | ||||
|                     <div class="col-md-3 mb-3"> | ||||
|                         <x-currency-select> | ||||
|                             <x-slot name="current">{{$domain_info[0]->currency}}</x-slot> | ||||
|                         </x-currency-select> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row mb-2"> | ||||
|                     <div class="col-12 col-md-4 mb-3"> | ||||
|                         <x-date-input> | ||||
|                             <x-slot name="title">Owned since</x-slot> | ||||
|                             <x-slot name="name">owned_since</x-slot> | ||||
|                             <x-slot name="value">{{$domain_info[0]->owned_since }}</x-slot> | ||||
|                         </x-date-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-md-4 mb-3"> | ||||
|                         <x-date-input> | ||||
|                             <x-slot name="title">Next due date</x-slot> | ||||
|                             <x-slot name="name">next_due_date</x-slot> | ||||
|                             <x-slot name="value">{{$domain_info[0]->next_due_date}}</x-slot> | ||||
|                         </x-date-input> | ||||
|                     </div> | ||||
|                 </div> | ||||
| 
 | ||||
|                 <div class="row mb-3"> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label1</x-slot> | ||||
|                             @if(isset($labels[0]->id)) | ||||
|                                 <x-slot name="current">{{$labels[0]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label2</x-slot> | ||||
|                             @if(isset($labels[1]->id)) | ||||
|                                 <x-slot name="current">{{$labels[1]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label3</x-slot> | ||||
|                             @if(isset($labels[2]->id)) | ||||
|                                 <x-slot name="current">{{$labels[2]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-3 mb-4"> | ||||
|                         <x-labels-select> | ||||
|                             <x-slot name="title">label</x-slot> | ||||
|                             <x-slot name="name">label4</x-slot> | ||||
|                             @if(isset($labels[3]->id)) | ||||
|                                 <x-slot name="current">{{$labels[3]->id}}</x-slot> | ||||
|                             @endif | ||||
|                         </x-labels-select> | ||||
|                     </div> | ||||
|                 </div> | ||||
| 
 | ||||
|                 <div class="form-check mt-2"> | ||||
|                     <input class="form-check-input" name="is_active" type="checkbox" | ||||
|                            value="1" {{ ($domain_info[0]->active === 1) ? 'checked' : '' }}> | ||||
|                     <label class="form-check-label"> | ||||
|                         I still have this service | ||||
|                     </label> | ||||
|                 </div> | ||||
|                 <div class="row mt-2"> | ||||
|                     <div class="col-12 col-lg-4"> | ||||
|                         <x-submit-button>Update domain</x-submit-button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </form> | ||||
|         </x-card> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										77
									
								
								resources/views/domains/index.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										77
									
								
								resources/views/domains/index.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,77 @@ | |||
| @section('title') {{'Domains'}} @endsection | ||||
| @section('style') | ||||
|     <x-modal-style></x-modal-style> | ||||
| @endsection | ||||
| @section('scripts') | ||||
|     <script src="{{ asset('js/vue.min.js') }}"></script> | ||||
|     <script src="{{ asset('js/axios.min.js') }}"></script> | ||||
| @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         {{ __('Domains') }} | ||||
|     </x-slot> | ||||
|         <div class="container" id="app"> | ||||
|             <x-delete-confirm-modal></x-delete-confirm-modal> | ||||
|             <x-card class="shadow mt-3"> | ||||
|                 <a href="{{ route('domains.create') }}" class="btn btn-primary mb-3">Add a domain</a> | ||||
|                 <x-success-alert></x-success-alert> | ||||
|             <div class="table-responsive"> | ||||
|                 <table class="table table-bordered"> | ||||
|                     <thead class="table-light"> | ||||
|                     <tr> | ||||
|                         <th class="text-nowrap">Domain</th> | ||||
|                         <th class="text-nowrap">Owned since</th> | ||||
|                         <th class="text-nowrap">Due in</th> | ||||
|                         <th class="text-nowrap">Provider</th> | ||||
|                         <th class="text-nowrap">Price</th> | ||||
|                         <th class="text-nowrap">Actions</th> | ||||
|                     </tr> | ||||
|                     </thead> | ||||
|                     <tbody> | ||||
|                     @if(!empty($domains)) | ||||
|                         @foreach($domains as $domain) | ||||
|                             <tr> | ||||
|                                 <td class="text-nowrap"><a href="https://{{ $domain->domain }}.{{$domain->extension}}" | ||||
|                                                            class="text-decoration-none">{{ $domain->domain }} | ||||
|                                         .{{$domain->extension}}</a></td> | ||||
|                                 <td class="text-nowrap">{{ $domain->owned_since}}</td> | ||||
|                                 <td class="text-nowrap">{{ now()->diffInDays($domain->next_due_date) }} <small>days</small> | ||||
|                                 </td> | ||||
|                                 <td class="text-nowrap">{{ $domain->provider_name}}</td> | ||||
|                                 <td class="text-nowrap">{{ $domain->price }} <small>{{$domain->currency}}</small></td> | ||||
|                                 <td class="text-nowrap"> | ||||
|                                     <form action="{{ route('domains.destroy', $domain->service_id) }}" method="POST"> | ||||
|                                         <a href="{{ route('domains.show', $domain->service_id) }}" | ||||
|                                            class="text-body mx-1"> | ||||
|                                             <i class="fas fa-eye" title="view"></i></a> | ||||
|                                         <a href="{{ route('domains.edit', $domain->service_id) }}" | ||||
|                                            class="text-body mx-1"> | ||||
|                                             <i class="fas fa-pen" title="edit"></i></a> | ||||
|                                         @csrf | ||||
|                                         @method('DELETE') | ||||
|                                         <i class="fas fa-trash text-danger ms-3" @click="modalForm" | ||||
|                                            id="btn-{{$domain->domain}}" title="{{$domain->service_id}}"></i> | ||||
|                                     </form> | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                         @endforeach | ||||
|                     @else | ||||
|                         <tr> | ||||
|                             <td class="px-4 py-2 border text-red-500" colspan="3">No domains found.</td> | ||||
|                         </tr> | ||||
|                     @endif | ||||
|                     </tbody> | ||||
|                 </table> | ||||
|             </div> | ||||
|         </x-card> | ||||
|         @if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1) | ||||
|             <p class="text-muted mt-4 text-end"><small> | ||||
|                     Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }} | ||||
|                     )</small> | ||||
|             </p> | ||||
|         @endif | ||||
|     </div> | ||||
|     <x-modal-delete-script> | ||||
|         <x-slot name="uri">domains</x-slot> | ||||
|     </x-modal-delete-script> | ||||
| </x-app-layout> | ||||
							
								
								
									
										102
									
								
								resources/views/domains/show.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										102
									
								
								resources/views/domains/show.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,102 @@ | |||
| @section('title') {{ $domain->domain }}.{{$domain->extension}} {{'domain'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         {{ __('Domain details') }} | ||||
|     </x-slot> | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <div class="row"> | ||||
|                 <div class="col-12 col-md-6 mb-2"> | ||||
|                     <h2>{{ $domain->domain }}.{{$domain->extension}}</h2> | ||||
|                     <code>@foreach($labels as $label) | ||||
|                             @if($loop->last) | ||||
|                                 {{$label->label}} | ||||
|                             @else | ||||
|                                 {{$label->label}}, | ||||
|                             @endif | ||||
|                         @endforeach</code> | ||||
|                 </div> | ||||
|                 <div class="col-12 col-md-6 text-md-end"> | ||||
|                     <h6 class="text-muted pe-lg-4">{{ $domain->id }}</h6> | ||||
|                     @if($domain->active !== 1) | ||||
|                         <h6 class="text-danger pe-lg-4">not active</h6> | ||||
|                     @endif | ||||
|                 </div> | ||||
|             </div> | ||||
|             <div class="row"> | ||||
|                 <div class="col-12 col-lg-6"> | ||||
|                     <div class="table-responsive"> | ||||
|                         <table class="table table-borderless text-nowrap"> | ||||
|                             <tbody> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Domain</td> | ||||
|                                 <td><a href="https://{{ $domain->domain }}.{{$domain->extension}}" class="text-decoration-none">{{ $domain->domain }}.{{$domain->extension}}</a></td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Provider</td> | ||||
|                                 <td>{{ $service_extras[0]->provider_name }}</td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Price</td> | ||||
|                                 <td>{{ $service_extras[0]->price }} {{ $service_extras[0]->currency }} | ||||
|                                     <small>{{\App\Process::paymentTermIntToString($service_extras[0]->term)}}</small> | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">NS1</td> | ||||
|                                 <td>{{ $domain->ns1 }}</td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">NS2</td> | ||||
|                                 <td>{{ $domain->ns2 }}</td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">NS3</td> | ||||
|                                 <td>{{ $domain->ns3 }}</td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Owned since</td> | ||||
|                                 <td> | ||||
|                                     @if(!is_null($domain->owned_since)) | ||||
|                                         {{ date_format(new DateTime($domain->owned_since), 'jS F Y') }} | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Next due date</td> | ||||
|                                 <td>{{Carbon\Carbon::parse($service_extras[0]->next_due_date)->diffForHumans()}} | ||||
|                                     ({{Carbon\Carbon::parse($service_extras[0]->next_due_date)->format('d/m/Y')}}) | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Inserted</td> | ||||
|                                 <td> | ||||
|                                     @if(!is_null($domain->created_at)) | ||||
|                                         {{ date_format(new DateTime($domain->created_at), 'jS M y g:i a') }} | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             <tr> | ||||
|                                 <td class="px-2 py-2 font-bold text-muted">Updated</td> | ||||
|                                 <td> | ||||
|                                     @if(!is_null($domain->updated_at)) | ||||
|                                         {{ date_format(new DateTime($domain->updated_at), 'jS M y g:i a') }} | ||||
|                                     @endif | ||||
|                                 </td> | ||||
|                             </tr> | ||||
|                             </tbody> | ||||
|                         </table> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </div> | ||||
|             <a href="{{ route('domains.index') }}" | ||||
|                class="btn btn-success btn-sm mx-2"> | ||||
|                 Go back | ||||
|             </a> | ||||
|             <a href="{{ route('domains.edit', $domain->id) }}" | ||||
|                class="btn btn-primary btn-sm mx-2"> | ||||
|                 Edit | ||||
|             </a> | ||||
|         </x-card> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										51
									
								
								resources/views/errors/404.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										51
									
								
								resources/views/errors/404.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,51 @@ | |||
| @section('title') {{'Error'}} | ||||
| @if(isset($status)) | ||||
|     {{$status}} | ||||
| @else | ||||
|     404 | ||||
| @endif | ||||
| @endsection | ||||
| @section('style') | ||||
|     <style> | ||||
|         .page-not-found-div { | ||||
|             height: 100vh; | ||||
|         } | ||||
| 
 | ||||
|         .page-not-found-div h1 { | ||||
|             font-size: 8rem; | ||||
|             color: #e73974;
 | ||||
|         } | ||||
| 
 | ||||
|         .page-not-found-div h3 { | ||||
|             font-size: 2.5rem; | ||||
|         } | ||||
| 
 | ||||
|         .page-not-found-div .center-div { | ||||
|             width: 100%; | ||||
|             padding: 0.2rem; | ||||
|             text-align: center; | ||||
|             position: absolute; | ||||
|             top: 50%; | ||||
|             left: 50%; | ||||
|             transform: translate(-50%, -50%); | ||||
|         } | ||||
|     </style> | ||||
| @endsection | ||||
| <x-app-layout> | ||||
|     <div class="page-not-found-div"> | ||||
|         <div class="center-div"> | ||||
|             @if(isset($status)) | ||||
|                 <h1>{{$status}}</h1> | ||||
|             @else | ||||
|                 <h1>Error</h1> | ||||
|             @endif | ||||
|             @if(isset($title)) | ||||
|                 <h3 class="mt-2">{{$title}}</h3> | ||||
|             @endif | ||||
|             @if(isset($message)) | ||||
|                 <p class="mt-4">{{$message}}</p> | ||||
|             @endif | ||||
|             <p class="mt-4"><a href="{{route('/')}}" class="text-decoration-none">Go home</a></p> | ||||
|         </div> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
							
								
								
									
										284
									
								
								resources/views/home.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										284
									
								
								resources/views/home.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,284 @@ | |||
| @section('title') {{'Home'}} @endsection | ||||
| <x-app-layout> | ||||
|     <div class="container"> | ||||
|         @if (Route::has('login')) | ||||
|             @auth | ||||
|                 <div class="row mt-4"> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h3>{{ $information['servers'] }}</h3> | ||||
|                                     <h5><a href="/servers" class="text-decoration-none">Servers</a></h5> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h3>{{ $information['shared'] }}</h3> | ||||
|                                     <h5><a href="/shared" class="text-decoration-none">Shared</a></h5> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h3>{{ $information['reseller'] }}</h3> | ||||
|                                     <h5><a href="/reseller" class="text-decoration-none">Reseller</a></h5> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h3>{{ $information['domains'] }}</h3> | ||||
|                                     <h5><a href="/domains" class="text-decoration-none">Domains</a></h5> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h3>{{ $information['misc'] }}</h3> | ||||
|                                     <h5><a href="/other" class="text-decoration-none">Misc</a></h5> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h3>{{ $information['dns'] }}</h3> | ||||
|                                     <h5><a href="/dns" class="text-decoration-none">DNS</a></h5> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 </div> | ||||
| 
 | ||||
|                 <div class="row mt-3"> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h4>{{$information['total_cost_weekly']}} <small class="text-muted">USD</small></h4> | ||||
|                                     <p>Weekly cost</p> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h4>{{$information['total_cost_monthly']}} <small class="text-muted">USD</small> | ||||
|                                     </h4> | ||||
|                                     <p>Monthly cost</p> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h4>{{$information['total_cost_yearly']}} <small class="text-muted">USD</small></h4> | ||||
|                                     <p>Yearly cost</p> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h4>{{$information['total_cost_2_yearly']}} <small class="text-muted">USD</small> | ||||
|                                     </h4> | ||||
|                                     <p>2 yearly cost</p> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h4>{{$information['total_services']}}</h4> | ||||
|                                     <p>Active services</p> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-2 mb-3"> | ||||
|                         <div class="card"> | ||||
|                             <div class="card-body text-center shadow"> | ||||
|                                 <div class="row"> | ||||
|                                     <h4>{{$information['total_inactive']}}</h4> | ||||
|                                     <p>Inactive services</p> | ||||
|                                 </div> | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 </div> | ||||
| 
 | ||||
| 
 | ||||
|                 <h3 class="my-3">Due soon</h3> | ||||
|                 @if(!empty($information['due_soon'])) | ||||
|                     <div class="card shadow mt-3"> | ||||
|                         <div class="card-body"> | ||||
|                             <div class="table-responsive"> | ||||
|                                 <table class="table table-bordered"> | ||||
|                                     <thead class="table-light"> | ||||
|                                     <tr> | ||||
|                                         <th class="text-nowrap">Name</th> | ||||
|                                         <th class="text-nowrap">Type</th> | ||||
|                                         <th class="text-nowrap">Due</th> | ||||
|                                         <th class="text-nowrap">Price</th> | ||||
|                                         <th class="text-nowrap"></th> | ||||
|                                     </tr> | ||||
|                                     </thead> | ||||
|                                     <tbody> | ||||
|                                     @foreach($information['due_soon'] as $due_soon) | ||||
|                                         <tr> | ||||
|                                             <td class="text-nowrap"> | ||||
|                                                 @if($due_soon->service_type === 1) | ||||
|                                                     {{$due_soon->hostname}} | ||||
|                                                 @elseif($due_soon->service_type === 2) | ||||
|                                                     {{$due_soon->main_domain}} | ||||
|                                                 @elseif($due_soon->service_type === 3) | ||||
|                                                     {{$due_soon->reseller}} | ||||
|                                                 @elseif($due_soon->service_type === 4) | ||||
|                                                     {{$due_soon->domain}}.{{$due_soon->extension}} | ||||
|                                                 @elseif($due_soon->service_type === 5) | ||||
|                                                     {{$due_soon->name}} | ||||
|                                                 @endif | ||||
|                                             </td> | ||||
|                                             <td class="text-nowrap"> | ||||
|                                                 @if($due_soon->service_type === 1) | ||||
|                                                     VPS | ||||
|                                                 @elseif($due_soon->service_type === 2) | ||||
|                                                     Shared | ||||
|                                                 @elseif($due_soon->service_type === 3) | ||||
|                                                     Reseller | ||||
|                                                 @elseif($due_soon->service_type === 4) | ||||
|                                                     Domain | ||||
|                                                 @elseif($due_soon->service_type === 5) | ||||
|                                                     Misc | ||||
|                                                 @endif | ||||
|                                             </td> | ||||
|                                             <td class="text-nowrap"> | ||||
|                                                 {{Carbon\Carbon::parse($due_soon->next_due_date)->diffForHumans()}}</td> | ||||
|                                             <td class="text-nowrap">{{$due_soon->price}} {{$due_soon->currency}} {{\App\Process::paymentTermIntToString($due_soon->term)}}</td> | ||||
|                                             <td class="text-nowrap text-center"> | ||||
|                                                 @if($due_soon->service_type === 1) | ||||
|                                                     <a href="{{ route('servers.show', $due_soon->service_id) }}" class="text-body mx-1"><i class="fas fa-eye" title="view"></i></a> | ||||
|                                                 @elseif($due_soon->service_type === 2) | ||||
|                                                     <a href="{{ route('shared.show', $due_soon->service_id) }}" class="text-body mx-1"><i class="fas fa-eye" title="view"></i></a> | ||||
|                                                 @elseif($due_soon->service_type === 3) | ||||
|                                                     <a href="{{ route('reseller.show', $due_soon->service_id) }}" class="text-body mx-1"><i class="fas fa-eye" title="view"></i></a> | ||||
|                                                 @elseif($due_soon->service_type === 4) | ||||
|                                                     <a href="{{ route('domains.show', $due_soon->service_id) }}" class="text-body mx-1"><i class="fas fa-eye" title="view"></i></a> | ||||
|                                                 @elseif($due_soon->service_type === 5) | ||||
|                                                     <a href="{{ route('misc.show', $due_soon->service_id) }}" class="text-body mx-1"><i class="fas fa-eye" title="view"></i></a> | ||||
|                                                 @endif | ||||
|                                             </td> | ||||
|                                         </tr> | ||||
|                                     @endforeach | ||||
|                                     </tbody> | ||||
|                                 </table> | ||||
| 
 | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 @endif | ||||
| 
 | ||||
|                 <h3 class="mt-4">Recently added</h3> | ||||
|                 @if(!empty($information['newest'])) | ||||
|                     <div class="card shadow mt-3"> | ||||
|                         <div class="card-body"> | ||||
|                             <div class="table-responsive"> | ||||
|                                 <table class="table table-bordered"> | ||||
|                                     <thead class="table-light"> | ||||
|                                     <tr> | ||||
|                                         <th class="text-nowrap">Name</th> | ||||
|                                         <th class="text-nowrap">Type</th> | ||||
|                                         <th class="text-nowrap">Added</th> | ||||
|                                         <th class="text-nowrap">Price</th> | ||||
|                                         <th class="text-nowrap"></th> | ||||
|                                     </tr> | ||||
|                                     </thead> | ||||
|                                     <tbody> | ||||
|                                     @foreach($information['newest'] as $new) | ||||
|                                         <tr> | ||||
|                                             <td class="text-nowrap"> | ||||
|                                                 @if($new->service_type === 1) | ||||
|                                                     {{$new->hostname}} | ||||
|                                                 @elseif($new->service_type === 2) | ||||
|                                                     {{$new->main_domain}} | ||||
|                                                 @elseif($new->service_type === 3) | ||||
|                                                     {{$new->reseller}} | ||||
|                                                 @elseif($new->service_type === 4) | ||||
|                                                     {{$new->domain}}.{{$new->extension}} | ||||
|                                                 @elseif($new->service_type === 5) | ||||
|                                                     {{$new->name}} | ||||
|                                                 @endif | ||||
|                                             </td> | ||||
|                                             <td class="text-nowrap"> | ||||
|                                                 @if($new->service_type === 1) | ||||
|                                                     VPS | ||||
|                                                 @elseif($new->service_type === 2) | ||||
|                                                     Shared | ||||
|                                                 @elseif($new->service_type === 3) | ||||
|                                                     Reseller | ||||
|                                                 @elseif($new->service_type === 4) | ||||
|                                                     Domain | ||||
|                                                 @elseif($new->service_type === 5) | ||||
|                                                     Misc | ||||
|                                                 @endif | ||||
|                                             </td> | ||||
|                                             <td class="text-nowrap">{{Carbon\Carbon::parse($new->created_at)->diffForHumans()}}</td> | ||||
|                                             <td class="text-nowrap">{{$new->price}} {{$new->currency}} {{\App\Process::paymentTermIntToString($new->term)}}</td> | ||||
|                                             <td class="text-nowrap text-center"> | ||||
|                                                 <a href="{{ route('servers.show', $new->service_id) }}" | ||||
|                                                    class="text-body mx-1"> | ||||
|                                                     <i class="fas fa-eye" title="view"></i> | ||||
|                                                 </a> | ||||
|                                             </td> | ||||
|                                         </tr> | ||||
|                                     @endforeach | ||||
|                                     </tbody> | ||||
|                                 </table> | ||||
| 
 | ||||
|                             </div> | ||||
|                         </div> | ||||
|                     </div> | ||||
|                 @endif | ||||
|                 @if(Session::has('timer_version_footer') && Session::get('timer_version_footer') === 1) | ||||
|                     <p class="text-muted mt-4 text-end"><small>Page took {{$information['execution_time']}} seconds, | ||||
|                             Built on Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }} | ||||
|                             )</small> | ||||
|                     </p> | ||||
|                 @endif | ||||
|     </div> | ||||
| 
 | ||||
|     @else | ||||
|         <a href="{{ route('login') }}" class="text-sm text-gray-700 underline">Login</a> | ||||
| 
 | ||||
|         @if (Route::has('register')) | ||||
|             <a href="{{ route('register') }}" class="ml-4 text-sm text-gray-700 underline">Register</a> | ||||
|             @endif | ||||
|             @endauth | ||||
|             </div> | ||||
|         @endif | ||||
| 
 | ||||
| </x-app-layout> | ||||
							
								
								
									
										64
									
								
								resources/views/ips/create.blade.php
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										64
									
								
								resources/views/ips/create.blade.php
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,64 @@ | |||
| @section('title') {{'Insert IP address'}} @endsection | ||||
| <x-app-layout> | ||||
|     <x-slot name="header"> | ||||
|         {{ __('Insert a new IP') }} | ||||
|     </x-slot> | ||||
|     <div class="container"> | ||||
|         <x-card class="shadow mt-3"> | ||||
|             <h4 class="mb-3">IP information</h4> | ||||
|             <x-back-button> | ||||
|                 <x-slot name="href">{{ route('IPs.index') }}</x-slot> | ||||
|                 Go back | ||||
|             </x-back-button> | ||||
|             <x-errors-alert></x-errors-alert> | ||||
|             <form action="{{ route('IPs.store') }}" method="POST"> | ||||
|                 @csrf | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-6 mb-4"> | ||||
|                         <x-text-input> | ||||
|                             <x-slot name="title">IP address</x-slot> | ||||
|                             <x-slot name="name">address</x-slot> | ||||
|                         </x-text-input> | ||||
|                     </div> | ||||
|                     <div class="col-12 col-lg-4 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Type</span></div> | ||||
|                             <select class="form-control" name="ip_type"> | ||||
|                                 <option value="ipv4" selected>IPv4</option> | ||||
|                                 <option value="ipv6">IPv6</option> | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <p>Attached to:</p> | ||||
|                     <div class="col-12 col-md-6 mb-3"> | ||||
|                         <div class="input-group"> | ||||
|                             <div class="input-group-prepend"><span class="input-group-text">Service</span></div> | ||||
|                             <select class="form-control" name="service_id"> | ||||
|                                 @foreach ($Servers as $server) | ||||
|                                     <option value="{{ $server['id'] }}"> | ||||
|                                         {{ $server['hostname'] }} (VPS) | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                                 @foreach ($Shareds as $shared) | ||||
|                                     <option value="{{ $shared['id'] }}"> | ||||
|                                         {{ $shared['main_domain'] }} (shared) | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                                 @foreach ($Resellers as $reseller) | ||||
|                                     <option value="{{ $reseller['id'] }}"> | ||||
|                                         {{ $reseller['main_domain'] }} (reseller) | ||||
|                                     </option> | ||||
|                                 @endforeach | ||||
|                             </select></div> | ||||
|                     </div> | ||||
|                 </div> | ||||
|                 <div class="row"> | ||||
|                     <div class="col-12 col-lg-4"> | ||||
|                         <x-submit-button>Insert IP</x-submit-button> | ||||
|                     </div> | ||||
|                 </div> | ||||
|             </form> | ||||
|         </x-card> | ||||
|     </div> | ||||
| </x-app-layout> | ||||
Some files were not shown because too many files have changed in this diff Show more
		Loading…
	
	Add table
		
		Reference in a new issue