https://github.com/tailwindlabs/tailwindcss
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\Http\Controllers\Api; | |
use App\Models\Bitcoin; | |
use App\Http\Controllers\Controller; | |
use Illuminate\Support\Facades\Http; | |
use Illuminate\Support\Facades\Cache; | |
class BitcoinController extends Controller |
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\Http\Controllers\Api; | |
use App\Http\Controllers\Controller; | |
use Intervention\Image\ImageManagerStatic as Image; | |
class CoverController extends Controller | |
{ | |
/** |
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
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; | |
contract QVAToken is ERC20 { | |
constructor() ERC20("QvaPay", "QVA") { | |
_mint(msg.sender, 10000000 * (10 ** uint256(decimals()))); | |
} | |
} |