This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<template> | |
<v-data-table | |
item-key="name" | |
class="elevation-1" | |
:loading ="loading" | |
loading-text="Loading... Please wait" | |
:headers="headers" | |
:items="roles" | |
sort-by="calories" | |
> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
void main() => runApp(MyApp()); | |
class MyApp extends StatelessWidget{ | |
@override | |
Widget build(BuildContext context){ | |
return MaterialApp( | |
title: "Welcome to Flutter", | |
home: Scaffold( | |
appBar: AppBar( | |
title: Text("Welcome to Flutter App"), |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Commands; | |
use CodeIgniter\CLI\BaseCommand; | |
use CodeIgniter\CLI\CLI; | |
use Config\Services; | |
/** | |
With the help of this command you can create a resource controller in CodeIgniter 4. | |
1) just create a folder named Commands in app folder | |
2) then create a php file with name CreateResourceController.php |
OlderNewer