Tutorial Laravel 10 #3 Membuat Model Dan Migration
Tutorial Laravel 10 #3 Membuat Model Dan Migration
com/tutorial-laravel-10-3-membuat-model-dan-migration
.env
.env
DB_DATABASE=laravel
DB_USERNAME=root
DB_PASSWORD=
1 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
DB_DATABASE=db_laravel_10
DB_USERNAME=root
DB_PASSWORD=
DB_DATABASE db_laravel_10
DB_PASSWORD
db_laravel_10
Post
-m
2 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
• app/Models/Post.php
• database/migrations/2023_02_14_232119_create_posts_table.php
database/migrations
/2023_02_14_232119_create_posts_table.php function up
image string
title string
content text
app/Models/Post.php
3 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
/**
* fillable
*
* @var array
*/
protected $fillable = [
'image',
'title',
'content',
];
}
$fillable
migrate
4 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
5 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
6 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
7 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
8 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
9 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
10 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
11 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
12 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
13 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
14 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
15 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
16 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
17 of 18 1/25/2024, 2:42 PM
Tutorial Laravel 10 #3 : Membuat Model dan Migration — SantriKoding.com — Website Belajar C... https://santrikoding.com/tutorial-laravel-10-3-membuat-model-dan-migration
18 of 18 1/25/2024, 2:42 PM