Advertisement
arlendafitranto

FrappeController

Oct 4th, 2023
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.74 KB | Source Code | 0 0
  1. <?php
  2.  
  3. namespace App\Http\Controllers;
  4.  
  5. use Illuminate\Http\Request;
  6.  
  7. class FrappeController extends Controller
  8. {
  9.     public function gantt()
  10.     {
  11.         $todo = [
  12.             [
  13.                 'id' => 'Task 1',
  14.                 'name' => 'Buy hosting',
  15.                 'start' => '2022-01-22',
  16.                 'end' => '2022-01-23',
  17.                 'progress' => 100,
  18.             ],
  19.             [
  20.                 'id' => 'Task 2',
  21.                 'name' => 'Draw wireframes',
  22.                 'start' => '2022-01-23',
  23.                 'end' => '2022-01-25',
  24.                 'progress' => 100,
  25.             ],
  26.             [
  27.                 'id' => 'Task 3',
  28.                 'name' => 'Visual Design',
  29.                 'start' => '2022-01-25',
  30.                 'end' => '2022-01-27',
  31.                 'progress' => 20,
  32.                 'dependencies' => 'Task 2'
  33.             ],
  34.             [
  35.                 'id' => 'Task 4',
  36.                 'name' => 'Build frontend',
  37.                 'start' => '2022-02-01',
  38.                 'end' => '2022-02-03',
  39.                 'progress' => 0,
  40.                 'dependencies' => 'Task 3'
  41.             ],
  42.             [
  43.                 'id' => 'Task 5',
  44.                 'name' => 'Build backend',
  45.                 'start' => '2022-02-03',
  46.                 'end' => '2022-02-07',
  47.                 'progress' => 0,
  48.             ],
  49.             [
  50.                 'id' => 'Task 6',
  51.                 'name' => 'Deploy Website',
  52.                 'start' => '2022-02-07',
  53.                 'end' => '2022-02-09',
  54.                 'progress' => 0,
  55.                 'dependencies' => 'Task 4, Task 5'
  56.             ],
  57.         ];
  58.  
  59.         // dd($todo);
  60.         return view('welcome', compact('todo'));
  61.     }
  62. }
  63.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement