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
'providers' => [ | |
'users' => [ | |
'driver' => 'eloquent', | |
'model' => App\User::class, | |
], | |
// 'users' => [ | |
// 'driver' => 'database', | |
// 'table' => 'users', | |
// ], |
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
'guards' => [ | |
'web' => [ | |
'driver' => 'session', | |
'provider' => 'users', | |
], | |
'api' => [ | |
'driver' => 'token', | |
'provider' => 'users', | |
], |
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
ERROR in ./resources/assets/js/components/ExampleComponent.vue | |
Module build failed: Error: | |
Vue packages version mismatch: | |
- vue@2.6.12 (C:\xampp\htdocs\mhn-doctors-ms\node_modules\vue\dist\vue.runtime.common.js) | |
- vue-template-compiler@2.6.11 (C:\xampp\htdocs\mhn-doctors-ms\node_modules\vue-template-compiler\package.json) | |
This may cause things to work incorrectly. Make sure to use the same version for both. | |
If you are using vue-loader@>=10.0, simply update vue-template-compiler. |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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
<html> | |
<head> | |
<title>Page title</title> | |
</head> | |
<body> | |
<h1>This is a heading</h1> | |
<p> This is a paragraph. </p> | |
<p>This is another paragraph. </p> | |
</body> | |
</html> |
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(new HelloWorld()); | |
} | |
class HelloWorld extends StatelessWidget { | |
@override | |
Widget build(BuildContext context) { | |
return MaterialApp( |
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<?php | |
// Lisbon, Portugal: | |
// Latitude: 38.4 North, Longitude: 9 West | |
// Zenith ~= 90, offset: +1 GMT | |
echo("Lisbon, Portugal: Date: " . date("D M d Y")); |
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
<!DOCTYPE html> | |
<html> | |
<body> | |
<?php | |
//Calculate the sunrise time for Lisbon, Portugal | |
//Latitude: 38.4 North | |
//Longitude: 9 West | |
//Zenith ~= 90 | |
//offset: +1 GMT |
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 | |
print_r(localtime()); | |
echo "<br><br>"; | |
print_r(localtime(time(),true)); | |
?> |
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 | |
// Prints the day | |
echo date("l") . "<br>"; | |
// Prints the day, date, month, year, time, AM or PM | |
echo date("l jS \of F Y h:i:s A"); | |
?> |
NewerOlder