- Visual Studio Code - VSCode
- PHPStorm
- Laravel Breeze
- Bootstrap 5
- Tailwind CSS
- Need PHP Installed
- Need Composer installed
- To get Laravel CLI Installed - composer global require laravel/installer
- Need Laravel CLI
- composer global require laravel/installer (install the Laravel CLI)
- Laravel New example-app-name
- CD example-app-name
- composer require theanik/laravel-more-command --dev
- composer require laravel/ui
- php artisan ui bootstrap (--auth)
- npm install bootstrap@latest @popperjs/core --save-dev (installs the latest version of Bootstrap and PopperJS)
- npm run dev
- npm run dev (sometimes have to run the npm run dev 2x after changes to scss run again.)
- ?? composer create-project laravel/laravel --prefer-dist laravel8-bootstrap
- Use other colors in Bootstrap
- Bootstrap 5 Installation on Laravel along with Utility API Example
- Eloquent or Query Builder: When to Use Which?
if (! file_exists($path)) {
dd('file does not exist!');
ddd('file does not exist!'); // Prettier Erro Message.
}
- Insstall Yaml - composer require spatie/yaml-front-matter
-
php artisan tinker
-
$user = new App\Models\User;
-
$user->name = 'Jim Sample';
-
$user->email = '[email protected]';
-
$user->password = bcrypt('!password');
-
$user->save();
-
$user = new App\Models\User;
-
$user->name = 'Stacey';
-
$user->email = '[email protected]';
-
$user->password = bcrypt('!password');
-
$user->save();
-
$user = new App\Models\User;
-
$user->name = 'Nathan Stanford';
-
$user->email = '[email protected]';
-
$user->password = bcrypt('!password');
-
$user->save();
-
List All Users
-
User::all();
php artisan help make:migration - to get help information.
- php artisan make:migration create_posts_table;
$post = new App\Models\Post;
$post->title = 'Eloquent is Amazing';
$post->excerpt = 'Lorem ipsum dolar sit amet.';
$post->body = 'Lorem, ipsum dolor sit amet consectetur adipisicing elit. Unde rerum error laborum sed, velit commodi officia ea quo quia nihil nulla reprehenderit quas, corrupti consequuntur similique perferendis facilis vel odit doloribus eaque pariatur! Saepe quis reprehenderit dolores? Quis totam ipsam veritatis iure voluptas eos tempora eaque id, dolore accusamus impedit.';
$post->save();
- use App\Models\Post;
- protected $guarded = ['id'];
- protected $fillable = ['title','excerpt','body'];