MonthsController.php 248 B

123456789101112131415
  1. <?php
  2. namespace App\Http\Controllers;
  3. use App\Month;
  4. use Illuminate\Http\Request;
  5. class MonthsController extends Controller
  6. {
  7. public function get()
  8. {
  9. $months = Month::all();
  10. return response()->json($months, 200);
  11. }
  12. }