Skip to content

Instantly share code, notes, and snippets.

View muhammadabdelsalam2's full-sized avatar
🏠
Working from home

muhammadElshakhs muhammadabdelsalam2

🏠
Working from home
View GitHub Profile
@muhammadabdelsalam2
muhammadabdelsalam2 / countries.sql
Created February 7, 2021 20:38 — forked from adhipg/countries.sql
Sql dump of all the Countries, Country Codes, Phone codes.
CREATE TABLE IF NOT EXISTS `country` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`iso` char(2) NOT NULL,
`name` varchar(80) NOT NULL,
`nicename` varchar(80) NOT NULL,
`iso3` char(3) DEFAULT NULL,
`numcode` smallint(6) DEFAULT NULL,
`phonecode` int(5) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
@muhammadabdelsalam2
muhammadabdelsalam2 / countries_nationalities_arabic_english.sql
Created February 7, 2021 20:35 — forked from FlavaSava7/countries_nationalities_arabic_english.sql
SQL Countries & Nationalities List : English and Arabic
CREATE TABLE `countries` (
`country_code` varchar(2) NOT NULL default '',
`country_enName` varchar(100) NOT NULL default '',
`country_arName` varchar(100) NOT NULL default '',
`country_enNationality` varchar(100) NOT NULL default '',
`country_arNationality` varchar(100) NOT NULL default '',
PRIMARY KEY (`country_code`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
--
-- Dumping data for table `countries`
@muhammadabdelsalam2
muhammadabdelsalam2 / font-awesome.php
Created December 9, 2019 10:47 — forked from justintadlock/font-awesome.php
PHP array of Font Awesome icons.
<?php
// Font Awesome v. 4.6.
function jt_get_font_icons() {
return array(
'fa-glass' => 'f000',
'fa-music' => 'f001',
'fa-search' => 'f002',
'fa-envelope-o' => 'f003',
@muhammadabdelsalam2
muhammadabdelsalam2 / master.blade.php
Created April 10, 2019 14:21 — forked from AndriyShepitsen/master.blade.php
Laravel Top Bar Menu Navigation Panel
<div class="navPanel">
<div class="row">
<div class="large-12 columns">
<nav class="top-bar">
<ul class="title-area">
<!-- Title Area -->
<li class="name">
<h1>
{{link_to_route('home', 'your_text_is_here');}}