This document provides help to get your Laravel 9 instance running with the latest versions of Laravel Mix and Font Awesome.
|
fab fa-500px | |
fab fa-accessible-icon | |
fab fa-accusoft | |
fab fa-acquisitions-incorporated | |
fas fa-ad | |
fas fa-address-book | |
fas fa-address-card | |
fas fa-adjust | |
fab fa-adn | |
fab fa-adobe |
DROP TABLE IF EXISTS location; | |
CREATE TABLE IF NOT EXISTS `location` ( | |
`locId` int(11) unsigned NOT NULL AUTO_INCREMENT, | |
`country` varchar(2) DEFAULT NULL, | |
`region` varchar(2) DEFAULT NULL, | |
`city` varchar(1000) DEFAULT NULL, | |
`postalCode` varchar(10) DEFAULT NULL, | |
`latitude` float DEFAULT NULL, | |
`longitude` float DEFAULT NULL, |
DROP TABLE IF EXISTS `areacodes` | |
CREATE TABLE IF NOT EXISTS `areacodes` ( | |
`Area Code` int(3) NOT NULL, | |
`Region` tinytext NOT NULL, | |
`Description` varchar(256) NOT NULL | |
) ENGINE=MyISAM DEFAULT CHARSET=latin1; | |
Model:: | |
/*Select*/ | |
select('col1','col2') | |
->select(array('col1','col2')) | |
->select(DB::raw('businesses.*, COUNT(reviews.id) as no_of_ratings, IFNULL(sum(reviews.score),0) as rating')) | |
->addSelect('col3','col4') | |
->distinct() // distinct select | |
/*From*/ |
/* ******************************************************************************************* | |
* TAILWIND.CSS | |
* DOCUMENTATION: https://tailwindcss.com/ | |
* ******************************************************************************************* */ | |
/* | |
* Available breakpoints | |
* -------------------- | |
* sm: min-width: 640px; | |
* md: min-width: 768px; |
This document provides help to get your Laravel 9 instance running with the latest versions of Laravel Mix and Font Awesome.
|