Laravelで実装する際のプロジェクト構成例を1つ挙げます。 今回は一般的なMVCに加え、Serviceを使ってモデルとロジックを分離します。 あくまで私が使っている1例ですので、ご了承ください。 #Model まずはテーブルを作成します。 # php artisan make:migration create_hoges_table <?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateHogesTable extends Migration { /** * Run the migrations. * * @return void */ public f