logo laravel

Laravel PHP dan Nginx dengan Docker

Pada tutorial kali ini saya akan berbagi untuk membuat aplikasi Laravel PHP termasuk NginX Docker container. Dengan Docker, kita tidak perlu menginstall aplikasi apapun di dalam laptop kecuali Docker. Laravel adalah PHP Framework yang paling populer, namun terkadang sulit untuk melakukan setup bagi orang yang pertama kali mengenal Laravel. Kalau kita membuka halaman awal cara Read more about Laravel PHP dan Nginx dengan Docker[…]

logo laravel

Basic Laravel 5.7 CRUD API using Fractal and Transformers

In this basic tutorial, we will create an API to create read update and delete (CRUD) a post using Laravel Transformers. Create Posts Table and User Controller Create Posts Table Create posts table through migration :

Open the newly migration file and add some attributes :

Run the migration :

Create UserController Read more about Basic Laravel 5.7 CRUD API using Fractal and Transformers[…]

logo laravel

Laravel 5.6 and 5.7 Basic 1 : Simple CRUD

Laravel is a PHP Open Source framework accomodating Model-View-Controller (MVC) architecture. At the moment (2018) Laravel has reached version 5.6. In this basic tutorial, we will create a simple CRUD. Later we will create a table with only four columns, the id, name, created_at, and updated_at. Before we begin, laravel should have been installed in Read more about Laravel 5.6 and 5.7 Basic 1 : Simple CRUD[…]

logo laravel

Laravel 5.6 Basic 1 : Membuat CRUD Sederhana

Laravel merupakan salah satu framework PHP yang bersifat Open Source dan mengikuti arsitektur Model-View-Controller (MVC). Saat ini (2018) Laravel sudah mencapai versi 5.6. Di tutorial dasar kali ini, kita akan membuat sebuah CRUD sederhana. Kita akan membuat tabel dasar yang hanya berisi empat kolom, yaitu id, name, created_at, dan updated_at. Sebelum memulai tutorial ini, laravel Read more about Laravel 5.6 Basic 1 : Membuat CRUD Sederhana[…]