This file contains 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\Http\Controllers\Auth; | |
use App\Http\Controllers\Controller; | |
use App\Models\User; | |
use Auth; | |
use Illuminate\Http\Request; | |
use Socialite; |
This file contains 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
package main | |
import "fmt" | |
var taste bool | |
func main() { | |
fruit := "banana" | |
count := 10 | |
This file contains 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 | |
// ..... | |
$img = Image::make('images/picture.jpg'); | |
$watermark = Image::make('images/watermark.png'); | |
$x = 0; | |
while ($x < $img->width()) { |
This file contains 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 | |
// FOR LARAVEL | |
Route::get('route-list', function() { | |
$routeCollection = Route::getRoutes(); | |
echo "<table style='width:100%'>"; | |
echo "<tr>"; | |
echo "<td width='10%'><h4>HTTP Method</h4></td>"; |
This file contains 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> | |
<head> | |
<title>Hello Vue</title> | |
</head> | |
<body> | |
<div id="app"> | |
<h1>{{ message }}</h1> | |
</div> | |
</body> |
NewerOlder