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 | |
// URL of the XML file | |
$url = 'https://scsanctions.un.org/resources/xml/en/consolidated.xml'; | |
// Load the XML file into a SimpleXMLElement | |
$xml = simplexml_load_file($url); | |
// Check if loading was successful | |
if ($xml === false) { | |
echo "Failed to load XML.\n"; |
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
// Parse the response JSON | |
var responseData = pm.response.json(); | |
// Extract the access token from the response | |
var accessToken = responseData.data.access_token; | |
// Set the access token variable | |
pm.environment.set("access_token", accessToken); |
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 lang="en"> | |
<head> | |
<meta charset="UTF-8"> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | |
<meta name="description" content="Feedback Landing page from user."> | |
<meta name="keywords" content="landing page, html css landing page, gsap"> | |
<meta name="author" content="Masum Billah"> | |
<title>{{ $business->business_name }}</title> | |
<link href="https://cdn.jsdelivr.net/npm/remixicon@3.6.0/fonts/remixicon.css" rel="stylesheet"> |
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
{ | |
"name": "laravel/laravel", | |
"description": "The Laravel Framework.", | |
"keywords": ["framework", "laravel"], | |
"license": "MIT", | |
"type": "project", | |
"require": { | |
"php": "^7.1.3", | |
"fideloper/proxy": "^4.0", | |
"guzzlehttp/guzzle": "^6.3", |
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 com.example.mahekarim162_15_7770; | |
import android.graphics.Color; | |
import android.support.v7.app.AppCompatActivity; | |
import android.os.Bundle; | |
import android.view.View; | |
import android.widget.Button; | |
import android.widget.EditText; | |
public class MainActivity extends AppCompatActivity { |
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 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
<div class="col-lg-3"> | |
<label for="couriertype_id">Select Courier Type<span>*</span></label> | |
<select class="form-control" name="couriertype_id" id="couriertype_id"> | |
@php($couriertypes = \App\Models\CourierType::all()) | |
@foreach ($couriertypes as $couriertype) | |
<option {{ ($getquotes->couriertype_id) ? 'selected' : '' }} value="{{ $couriertype->id }}">{{ $couriertype->courier_type_name }} </option> | |
@endforeach | |
</select> | |
</div> |
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 | |
require_once base_path(); // Include LicenseBox external/client api helper file | |
// Initialize a new LicenseBoxAPI object | |
$filename = 'database.sql'; | |
$product_info=$api->get_latest_version(); | |
/* | |
$license_filename="../.lic"; |
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 | |
return [ | |
/* | |
|-------------------------------------------------------------------------- | |
| Default Filesystem Disk | |
|-------------------------------------------------------------------------- | |
| | |
| Here you may specify the default filesystem disk that should be used |
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
public function update(Request $request) | |
{ | |
$products = Product::findOrfail($request)->first(); | |
$products->product_name = $request->product_name; | |
$products->description = $request->description; | |
$products->total_rate = $request->total_rate; | |
$products->package_rate = $request->package_rate; | |
$products->product_slug = $request->product_slug; | |
$products->package_image = $request->package_image; |
NewerOlder