Files
HRM-System/scratch/list_shifts.php

15 lines
378 B
PHP

<?php
require __DIR__.'/../vendor/autoload.php';
$app = require_once __DIR__.'/../bootstrap/app.php';
$kernel = $app->make(Illuminate\Contracts\Console\Kernel::class);
$kernel->bootstrap();
use Illuminate\Support\Facades\DB;
$shifts = DB::table('shifts')
->select('id', 'name', 'start_time', 'end_time')
->get();
echo json_encode($shifts, JSON_PRETTY_PRINT) . "\n";