text
stringlengths
2
1.03M
@push('scripts') <script> jQuery(document).ready(function($) { $('#datetimepicker-{{ $id }}').datetimepicker(@isset($config) @json($config) @endisset); }); </script> @endpush <div class="form-group row"> <label for="{{ snake_case($label) }}" class="{{ $label_class ?? 'col col-form-label'...
<!DOCTYPE html> <html lang="en-US"> <head> <meta charset="utf-8"> </head> <body> <p>Dear Admin,</p> <p>A new booking order has been placed at limousinesydneyaustralia.com.</p> <div><b>YOU ACTION IS REQUIRED TO ACCEPT OR REJECT THE BOOKING. </b></div> <hr/> <di...
<?php /** * Controller genrated using LaraAdmin * Help: http://laraadmin.com */ namespace App\Http\Controllers\LA; use App\Http\Controllers\Controller; use App\Http\Requests; use Illuminate\Http\Request; use DB; use Auth; use App\Models\Organization; /** * Class DashboardController * @package App\Http\Controller...
<?php require __DIR__ . '/../vendor/autoload.php'; use Curl\Curl; $data = []; if (isset($_GET['after'])) { $data['after'] = $_GET['after']; } $curl = new Curl(); $curl->get('https://www.reddit.com/r/pics/top/.json', $data); echo '<ul>'; foreach ($curl->response->data->children as $result) { $pic = $result-...
<?php $__env->startSection('content'); ?> <div class="col-sm-8 my-3"> <form action="<?php echo e(action('VideoController@update', $video->id)); ?>" method="post" enctype="multipart/form-data"> <?php echo e(method_field('PATCH')); ?> <?php echo csrf_field(); ?> <div class="card"> ...
<?php /* * This file is part of Twig. * * (c) Fabien Potencier * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ /** * @author Fabien Potencier <fabien@symfony.com> * * @final */ class Twig_Util_DeprecationCollector { priva...
<?php return [ /* |-------------------------------------------------------------------------- | Application Name |-------------------------------------------------------------------------- | | This value is the name of your application. This value is used when the | framework needs to plac...
<?php namespace backend\controllers; use Yii; use backend\models\CommonForm; use backend\models\Sku; use backend\models\SkuSearch; use yii\web\Controller; use yii\web\NotFoundHttpException; use yii\web\ForbiddenHttpException; use yii\web\UploadedFile; use yii\filters\AccessControl; use yii\filters\VerbFilter; /** *...
<div class="col-md-3 col-sm-4"> <div class="usernavwrap"> <ul class="usernavdash"> <li class="{{ Request::url() == route('company.home') ? 'active' : '' }}"><a href="{{route('company.home')}}"><i class="fa fa-tachometer" aria-hidden="true"></i> {{__('Tableau de bord')}}</a></li> <li class="{{ Reque...
<?php /** * Xterm数据模型 */ class XtermTable { // 数据表模型配置 public $config = [ 'name' => 'xterm', 'title' => '终端历史操作', 'search_key' => '', 'add_button' => 0, 'del_button' => 0, 'search_button' => 0, 'check_all' => 0, 'list_row' => 200, 'addon' => 'admin' ]; ...
<?php global $path; $curl = curl_init(); // Set some options - we are passing in a useragent too here curl_setopt_array($curl, array( CURLOPT_RETURNTRANSFER => 1, CURLOPT_URL => "http://localhost:8008/" )); // Send the request & save response to $resp $resp = curl_exec($curl); // Close request to...
@extends('layouts.backend') @section('content') <div class="container"> <div class="row"> @include('admin.sidebar') <div class="col-md-9"> <div class="card"> <div class="card-header">Edit Comment #{{ $comment->id }}</div> <div...
@extends('backpack::layout') @section('content') @if(count($errors)>0) <ul class="list-group"> @foreach($errors->all() as $error) <li class="list-group-item text-danger"> {{$error}} </li> @endforeach </ul> @endif <d...
@extends('master') @section('title') {{config('app.name')}} @endsection @section('content') <div class="content-wrapper"> sdas <!-- Content Header (Page header) --> <div class="content-header"> <div class="container-fluid"> <div class="row mb-2"> <div class="col-sm-6"> <h1 ...
<?php namespace app\controllers; use Yii; use app\models\Faculty; use app\models\Search\FacultySearch; use yii\web\Controller; use yii\web\NotFoundHttpException; use yii\filters\VerbFilter; /** * FacultyController implements the CRUD actions for Faculty model. */ class FacultyController extends Controller { /*...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Shop extends MY_Controller { public function sortby($sort, $page = null) { $data['title'] = 'Shop'; $data['content'] = $this->shop->select( ['product.id', 'product.title', 'product.description', 'product.image', 'product.price', 'pr...
<?php namespace AliOpen\Live; use AliOpen\Core\RpcAcsRequest; class LiveDomainTranscodeDataDescribeRequest extends RpcAcsRequest { private $domainName; private $endTime; private $startTime; private $ownerId; public function __construct(){ parent::__construct("live", "2016-11-01", "Describ...
<?php /** * * Copyright © 2015 Magento. All rights reserved. * See COPYING.txt for license details. */ namespace MGS\Mpanel\Controller\Element; use Magento\Framework\Controller\ResultFactory; use Magento\Customer\Model\Session as CustomerSession; class Delete extends \Magento\Framework\App\Action\Action { publi...
<?php namespace app\api\controller; use app\api\validate\WriteLog; use app\common\controller\Api; class Runlog extends Base { // 无需登录的接口,*表示全部 protected $noNeedLogin = ['*']; // 无需鉴权的接口,*表示全部 protected $noNeedRight = ['*']; /** * 写入运行日志 * @ApiMethod (POST) * @ApiRoute (/api/...
<?php namespace common\models; use common\models\BaseModels\NewVehicles as BaseModelsNewVehicles; use Yii; /** * This is the model class for table "newVehicles". * * @property int $id * @property int $v_id * @property string $v_engine * @property string $video_url * @property string|null $v_year * * @proper...
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class UserContact extends Model { use HasFactory; }
@extends('layouts.dashboard') @section('layui-content') <style> textarea.layui-textarea.layui-table-edit {min-width: 300px; min-height: 200px; z-index: 2;} table tr td select {border: none; height: 29px;} table tr td select option{ color: #000000; background: #FFFFFF;} .layui-menu{ma...
<?php ################################################################################ # IRM - The Information Resource Manager # Copyright (C) 2003 Yann Ramin # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # ...
@extends('layouts.master') @section('title') Car Network @endsection @section('content') <nav aria-label="breadcrumb"> <ol class="breadcrumb bg-white"> <li class="breadcrumb-item active" aria-current="page">Home</li> </ol> </nav> <div class="container"> <h2 class="text-info text-center mb-5">Buy & S...
<?php /** * RegistrationResult * * PHP version 5 * * @category Class * @package Soxyl\Saferpay * @author OpenAPI Generator team * @link https://openapi-generator.tech */ /** * Saferpay JSON API * * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-genera...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('users', function ...
<?php /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your application. These | routes are loaded by the RouteServiceProvider within a group which | ...
<x-app-layout title="Subscriptions"> <div class="container grid px-6 mx-auto mb-6"> @slot('header') Subscriptions @endslot @livewire('admin.subscriptions.subscription-table') </div> @push('modals') @livewire('admin.subscriptions.modal-subscription') @endp...
<?php namespace App\Http\Controllers; use App\Http\Controllers\controller; use App\Models\User; use Illuminate\Http\Request; use Illuminate\Support\Arr; use Illuminate\Support\Facades\DB; use Illuminate\Support\Facades\Hash; use Spatie\Permission\Models\Permission; use Spatie\Permission\Models\Role; class UsuarioCo...
<?php /** * Magento * * NOTICE OF LICENSE * * This source file is subject to the Open Software License (OSL 3.0) * that is bundled with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://opensource.org/licenses/osl-3.0.php * If you did not receive a co...
<?php namespace Test\All\Router; use Closure; use Europa\Router\Adapter\Json; use Europa\Router\Route; use Europa\Router\Router; use Exception; use Testes\Test\UnitAbstract; class RouterTest extends UnitAbstract { public function manipulatingRoutes() { $router = new Router; $router['t...
<?php /** * Zend Framework (http://framework.zend.com/) * * @link http://github.com/zendframework/zf2 for the canonical source repository * @copyright Copyright (c) 2005-2014 Zend Technologies USA Inc. (http://www.zend.com) * @license http://framework.zend.com/license/new-bsd New BSD License */ namespace ...
@extends('layouts.backend-with-sidemenu') @section('breadcrumbs') <li> <a href="#">{{ trans('breadcrumb.shops') }}</a> </li> <li>{{ trans('breadcrumb.monthly-summary-all2') }}</li> @endsection @section('content') <div class="portlet light portlet-fit portlet-datatable bordered"> <div class="portlet-title"> <d...
--TEST-- SOAP Interop Round4 GroupH Complex Doc Lit 007 (php/wsdl): echoMultipleFaults2(1) --SKIPIF-- <?php require_once('skipif.inc'); ?> --INI-- soap.wsdl_cache_enabled=0 --FILE-- <?php class SOAPStruct { function SOAPStruct($s, $i, $f) { $this->varString = $s; $this->varInt = $i; $this->v...
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bundle\SecurityBundle\Tests\Functional; use Symfony\Component\S...
<?php namespace Phpactor\Tests; use Symfony\Component\Console\Output\BufferedOutput; use Symfony\Component\Process\Process; use Symfony\Component\Filesystem\Filesystem; use PHPUnit\Framework\TestCase; use Phpactor\TestUtils\Workspace; use Symfony\Component\Console\Input\ArrayInput; use Phpactor\Container\Container; u...
<?php /** * Created by PhpStorm. * User: Jim * Date: 2018/11/25 * Time: 22:23 */ namespace app\index\model; use think\Model; use think\Db; class ModifyData extends Model { public function modify_data($uid,$name,$email,$phone,$region){ $sql = Db::name('user')->where('uid',$uid)->update(['name'=>$name,...
<br> <br> <br> <body style="background-color: #FFFFE0"> <form autocomplete="off" action="<?php echo base_url('empleado_controller/ingresar') ?>" method="POST" onsubmit="return validarFormulario()"> <center > <div class="animated zoomInDown " class="col-md-12"> <h1 class="bg-dark text-white text-center">ING...
<?php namespace App\Http\Controllers; use App\Repositories\CatelogRepository; use Illuminate\Http\Request; use App\Http\Resources\Catelog as CatelogResource; class CatelogController extends Controller { protected $repository; /** * NuxtController constructor. * @param $repository */ publi...
<?php namespace App\Http\Controllers\Auth; use Auth; use App\Http\Controllers\Controller; use Illuminate\Foundation\Auth\AuthenticatesUsers; use Illuminate\Http\Request; class LoginController extends Controller { /* |-------------------------------------------------------------------------- | Login Contr...
<?php // autoload_psr4.php @generated by Composer $vendorDir = dirname(dirname(__FILE__)); $baseDir = dirname($vendorDir); return array( 'yii\\swiftmailer\\' => array($vendorDir . '/yiisoft/yii2-swiftmailer'), 'yii\\gii\\' => array($vendorDir . '/yiisoft/yii2-gii/src'), 'yii\\faker\\' => array($vendorDir...
<?php namespace Drupal\Tests\system\Functional\Menu; use Drupal\Core\Url; use Drupal\Tests\BrowserTestBase; /** * Tests menu router and default menu link functionality. * * @group Menu */ class MenuRouterTest extends BrowserTestBase { /** * Modules to enable. * * @var array */ protected static $...
<?php /** * * * @author Mark Guinn <mark@adaircreative.com> * @date 12.05.2012 * @package silverstripe-facebook-like */ class FBLikeButtonExtension extends SiteTreeExtension { private static $default_button_config = array( 'action' => 'like', 'colorscheme' => 'light', 'send' => 'false', 'show_faces' =...
<?php session_start(); session_destroy(); header('Location:../admin'); ?>
<?php /** * Template for displaying Search Results pages * * @package WordPress * @subpackage Twenty_Eleven * @since Twenty Eleven 1.0 */ get_header(); ?> <section id="primary"> <div id="content" role="main"> <?php if ( have_posts() ) : ?> <header class="page-header"> <h1 class="page-title"> ...
<?php N2Loader::import('libraries.form.elements.list'); class N2ElementWordPressMetaKeys extends N2ElementList { public function __construct($parent, $name = '', $label = '', $default = '', array $parameters = array()) { parent::__construct($parent, $name, $label, $default, $parameters); $this->...
<?php if ($this->session->userdata('isLogin')): ?> <nav class="navbar navbar-expand-lg fixed-top-message bg-white rfirstnav" style="position: fixed;width: 100%;z-index: 1000;top: 0;padding: 0.4rem 1rem !important;"> <div class="container"> <a class="navbar-brand" href="<?php echo site_url(); ?>"><img alt="" class="...
<?php /** * Created by PhpStorm. * * bilby * (c) 2019 Craig Rayner <craig@craigrayner.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. * * User: craig * Date: 1/07/2019 * Time: 09:47 */ namespace Kookaburra\UserAdmin\Provide...
<?php if (!defined('THINK_PATH')) exit(); /*a:4:{s:96:"/home/www/admin/localhost_9001/wwwroot/public/../application/admin/view/custom/payment/edit.html";i:1614729562;s:81:"/home/www/admin/localhost_9001/wwwroot/application/admin/view/layout/default.html";i:1588765310;s:78:"/home/www/admin/localhost_9001/wwwroot/applica...
<?php // Start the session session_start(); if (!isset($_SESSION['securityLevel']) && $_SESSION['securityLevel'] != 2) { $output = "<p>You must be an admin to access this page.</p>"; $output .= "<p><a href='index.php'>Return home and try again</a></p>"; exit($output); } $PAGENAME = 'Edit Reply'; $HEAD = ' <sc...
<?php namespace Google\AdsApi\AdWords\v201708\o; /** * This file was generated from WSDL. DO NOT EDIT. */ class LocationSearchParameter extends \Google\AdsApi\AdWords\v201708\o\SearchParameter { /** * @var \Google\AdsApi\AdWords\v201708\cm\Location[] $locations */ protected $locations = null; ...
@extends('layouts.app') @section('content') <div class="flex-center position-ref full-height"> welcomeトップ画面になる予定 </div> @endsection
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Redirect; use Illuminate\Support\Facades\Input; use App; use DB; class ProductController extends Controller{ public function listproducts(){ $productdatas=App\Product::paginate(24); $models=App\Product::selectRaw('brand...
--TEST-- File_CSV Test Case 012: Read headers --FILE-- <?php // $Id$ /** * Test for: * - Parsing of headers */ require_once 'File/CSV.php'; $file = dirname(__FILE__) . '/012.csv'; $conf = File_CSV::discoverFormat($file); $conf['header'] = true; $data = array(); File_CSV::read($file, $conf); while ($res = File_CS...
<?php session_start(); if ($_SESSION['id_estado'] != '2') { header("Location:../login_peluquero.php"); } ?> <!DOCTYPE html> <html lang="es"> <head> <title>Login-Peluquero</title> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no"> <!-- Boo...
<?php namespace App\Controllers; class Produk extends BaseController { protected $produkModel; function __construct() { $this->produkModel = new \App\Models\ProdukModel(); } public function index() { // // jawaban responsi // if (isset($_COOKIE['produk'])) { // $arr_produk = json_decode($_COOKIE['pr...
<?php /** * Copyright (c) 2010-2016 Romain Cottard * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Eureka\Component\Loader; use Eureka\Eurekon; use Eureka\Eurekon\Style; use Eureka\Eurekon\Out; /** * Loader cache gener...
<?php /** * @package toolkit */ require_once FACE . '/interface.exportablefield.php'; require_once FACE . '/interface.importablefield.php'; /** * The Tag List field is really a different interface for the Select Box * field, offering a tag interface that can have static suggestions, * suggestions from a...
<?php namespace RectorPrefix20210609; if (\class_exists('tslib_content_PostInitHook')) { return; } class tslib_content_PostInitHook { } \class_alias('tslib_content_PostInitHook', 'tslib_content_PostInitHook', \false);
<?php return [ 'models' => [ /* * When using the "HasPermissions" trait from this package, we need to know which * Eloquent model should be used to retrieve your permissions. Of course, it * is often just the "Permission" model but you may use whatever you like. * ...
<?php declare(strict_types=1); namespace Test; use GreenLinks\Psr16Adapter\Exception\InvalidArgumentException; use GreenLinks\Psr16Adapter\Exception\GeneralException; use Test\Base\Psr6TestCase; use PHPUnit\Exception; class DeleteMultipleTests extends Psr6TestCase { /** * @test */ public function...
<?php return [ '_type' => 'Gantry\\Component\\Content\\Block\\HtmlBlock', '_version' => 1, 'id' => '5b6ba31fdedaa9.08701034', 'content' => '<div id="mobile-menu-9728-particle" class="g-content g-particle"> <div id="g-mobilemenu-container" data-g-menu-breakpoint="48rem"></div> </di...
<?php return array( 'root' => array( 'pretty_version' => 'dev-master', 'version' => 'dev-master', 'type' => 'library', 'install_path' => __DIR__ . '/../../', 'aliases' => array(), 'reference' => '7008da0367a213c008efa315434ca3a966a38351', 'name' => '__root__',...
<?php namespace MiladRahimi\Jwt\Exceptions; use RuntimeException; /** * Class TokenGeneratingException * Parent exception for all exceptions related to generating tokens * * @package MiladRahimi\Jwt\Exceptions */ abstract class TokenGeneratingException extends RuntimeException { // Nada }
@extends('layouts.dashboard.main') @include('root.usuarios.form') @section('template_title') Registrar un usuario | {{ config('app.name', 'Laravel') }} @endsection @section('content') <div class="container-fluid"> <!-- Heading --> <div class="card mb-4 wow fadeIn hoverable"> ...
<footer class="footer"> <img class="brand-icon" src="https://cdn.learnku.com/uploads/sites/KDiyAbV0hj1ytHpRTOlVpucbLebonxeX.png"> <a href="https://learnku.com/laravel/courses" target=_blank> 刻意練習,每日精進 </a> <div class="float-right"> <a href="/about" >About</a> </div> </footer>
@extends('auth.layouts.master') @section('title', 'Заказ ' . $order->id) @section('content') <div class="py-4"> <div class="container"> <div class="justify-content-center"> <div class="panel"> <h1>Заказ №{{ $order->id }}</h1> <p>Заказчик:...
<?php return [ /* |-------------------------------------------------------------------------- | Mail Driver |-------------------------------------------------------------------------- | | Laravel supports both SMTP and PHP's "mail" function as drivers for the | sending of e-mail. You may s...
@extends('nguoidung') @section('content') <div class="row"> <div class="col-12"> <div class="card"> <div class="card-body"> <h3 class="text-center">THUYẾT MINH ĐỀ TÀI</h3> <h3 class="text-center mb-4">KHOA HỌC VÀ CÔNG NGHỆ CẤP CƠ SỞ </h3> ...
<?php function getState($key){// 根据id获取状态 $where=array('type'=>'state','k'=>$key); $data=M('tp_dict')->where($where)->find(); return $data['v']; } function getBuild($id){ $arr=M('build')->find($id); if($arr){ return $arr['name']; }else { ...
<?php namespace Modules\FrontendHomePage\Database\Seeders; use Illuminate\Database\Seeder; use Illuminate\Database\Eloquent\Model; class FrontendHomePageDatabaseSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { Model::unguard(); ...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); class Pertanyaan extends CI_Controller { function __construct() { parent::__construct(); $this->load->model('pertanyaan_model'); } public function index() { $data['pertanyaan'] = $this->pertanyaan_model-...
@if ($paginator->hasPages()) <nav role="navigation" aria-label="{{ __('Pagination Navigation') }}" class="flex items-center justify-between"> <div class="hidden sm:flex-1 sm:flex sm:items-center sm:justify-between"> <div> <span class="relative z-0 inline-flex shadow-sm rounded-md...
@extends('layouts.app') @section('content') <div class="row col-md-9 col-lg-9 col-sm-9 pull-left"> <h1>Create new company</h1> <div class="row col-md-12 col-lg-12 col-sm-12" style ="background : white; margin:10 px ; "> <form method="post" action="{{ route('companies.store') }}"> ...
<?php /** * Zend Framework * * LICENSE * * This source file is subject to the new BSD license that is bundled * with this package in the file LICENSE.txt. * It is also available through the world-wide-web at this URL: * http://framework.zend.com/license/new-bsd * If you did not receive a copy of the license an...
<?php return unserialize('a:1:{i:0;O:30:"Doctrine\\ORM\\Mapping\\OneToMany":6:{s:8:"mappedBy";s:10:"profession";s:12:"targetEntity";s:36:"Connection\\UserBundle\\Entity\\Profile";s:7:"cascade";N;s:5:"fetch";s:4:"LAZY";s:13:"orphanRemoval";b:0;s:7:"indexBy";N;}}');
<?php namespace App\Http\Controllers\API\Contact; use App\Http\Resources\TransactionCollection; use App\Http\Resources\TransactionResource; use App\Models\Transaction; use Illuminate\Auth\Access\Gate; use Illuminate\Http\Request; class TransactionController extends BaseController { public function __construct()...
<?php require_once "config.php"; $redirectURL = "https://65076766.ngrok.io/twitter/facebookoauth-master/fb-callback.php"; $permission = ['email','user_posts']; $loginURL = $helper->getLoginUrl($redirectURL, $permission); ?> <!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewpor...
<?php defined('BASEPATH') OR exit('No direct script access allowed'); /* | ------------------------------------------------------------------- | AUTO-LOADER | ------------------------------------------------------------------- | This file specifies which systems should be loaded by default. | | In order to keep the fr...
<?php /** * CodeIgniter * * An open source application development framework for PHP * * This content is released under the MIT License (MIT) * * Copyright (c) 2014 - 2016, British Columbia Institute of Technology * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this softw...
<?php /* * This file is part of the Arnapou Kinders package. * * (c) Arnaud Buathier <arnaud@arnapou.net> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace App\Service\Admin; use Symfony\Component\Form\FormView; use Twig...
<?php namespace Oro\Bundle\EmbeddedFormBundle\Tests\Unit\Entity; use Oro\Bundle\EmbeddedFormBundle\Entity\EmbeddedForm; class EmbeddedFormTest extends \PHPUnit\Framework\TestCase { /** @var EmbeddedForm */ protected $entity; protected function setUp(): void { $this->entity = new EmbeddedForm(...
<?php namespace App\Entities; use App\Entities\Company; use App\Entities\CompanyUser; use App\Entities\LoanAccount; use App\Entities\Status; use App\User; use Carbon\Carbon; use Illuminate\Database\Eloquent\Model; class LoanRepaymentSchedule extends Model { /** * The attributes that are mass assignable ...
<?php /************************************************************************* Generated via "php artisan localization:missing" at 2018/04/26 10:54:46 *************************************************************************/ return array ( 'address_details' => 'Dokładny Adres', 'address_line_1' => 'Adres 1', ...
@extends('layouts.app') @section('content') <div class="row"> <div class="col-12"> <h2>Pedidos Recebidos</h2> <hr> </div> <div class="col-12"> <div class="accordion" id="accordionExample"> @forelse($orders as $key => $order) ...
<?php $__env->startSection('title', __('Not Found')); ?> <?php $__env->startSection('code', '404'); ?> <?php $__env->startSection('message', __('Not Found')); ?> <?php echo $__env->make('errors::minimal', \Illuminate\Support\Arr::except(get_defined_vars(), ['__data', '__path']))->render(); ?><?php /**PATH C:\xampp\htd...
<?php /** * Created by IntelliJ IDEA. * User: stevenhawley * Date: 10/5/16 * Time: 11:01 AM */ namespace Fulfillment\OMS\Models\Response\Contracts; use Fulfillment\OMS\Models\Request\Contracts\User as RequestUserContract; interface User extends RequestUserContract { /** * @return int */ public function g...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreateCodUploadsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('cod_uploads'...
<?php declare (strict_types=1); namespace Symplify\EasyCodingStandard\Console\Style; use ECSPrefix20220213\Symfony\Component\Console\Helper\ProgressBar; use ECSPrefix20220213\Symfony\Component\Console\Input\InputInterface; use ECSPrefix20220213\Symfony\Component\Console\Output\OutputInterface; use ECSPrefix20220213\S...
<?php namespace crud54\Http\Controllers\Auth; use crud54\User; use crud54\Http\Controllers\Controller; use Illuminate\Support\Facades\Validator; use Illuminate\Foundation\Auth\RegistersUsers; class RegisterController extends Controller { /* |-------------------------------------------------------------------...
<div class="min-h-screen flex flex-col sm:justify-center items-center pt-6 sm:pt-0 bg-gray-100" style="--bg-opacity: 1; background: rgb(180,131,189); background: linear-gradient(225deg, rgba(180,131,189,1) 21%, rgba(116,222,244,1) 67%, rgba(192,160,205,1) 86%);"> <div style="display:flex; flex-wrap...
<?php namespace Object\Controller; class Authorized extends \Object\Controller { /** * Acl settings * * Authorized only * * @var array */ public $acl = [ 'public' => false, 'authorized' => true, 'permission' => false ]; }
<div class="form-group"> <label for="username">{{ trans('auth.username') }}</label> @include('form.text', ['name' => 'username', 'tabindex' => 1]) </div> @if(session('request-email', false) === true) <div class="form-group"> <label for="email">{{ trans('auth.email') }}</label> @include('for...
<?php use yii\helpers\Html; use backend\assets\AppAsset; AppAsset::register($this); ?> <?php $this->beginPage() ?> <!DOCTYPE html> <html lang="<?= Yii::$app->language ?>"> <head> <meta charset="<?= Yii::$app->charset ?>"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta content=...
<?php return array( 'ICBC' => 'data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAH4AAAAkCAMAAAB46H4rAAAAY1BMVEX////vr6/cUFDPEBDMAADWMDDicHD539/SICDfYGD87+/Q0NBERERTU1Pg4OCCgoKRkZHAwMDv7+80NDRzc3Plf3/sn5/yv78FBQWhoaFjY2OxsbHpj4/1z88kJCQVFRXZQEBtCU7vAAAACXBIWXMAAABIAAAASABGyWs+AAACz0lEQVRYw+1Wa3ejIBAl1TwFEcHKIxX//6/cO4BJmr...
@extends('layouts.header') @section('content') <div class="text-center bg-overlay-dark-7 py-7" style="background:url({{ asset('frontend/images/categories/serre.jpg') }}) no-repeat; background-size:cover; background-position: center center;"> <div class="container"> <div class="row all-text-white"> ...
<?php include 'php/backend/connection.php'; ?> <!DOCTYPE html> <html lang="en"> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- The above 3 meta tags *must* come first in the head; any oth...
<section> <h1 class="text-center">Edit member cv</h1> <section class="input_form"> <form action="<?php echo URL::to('/edit_member_cv_action'); ?>" method="post" enctype="multipart/form-data"> @csrf <input type="hidden" name="id" id="id" aria-describedby="helpId" placeholder="John" val...
<?php namespace Flofire\TaobaoSDK\Top\Request; use Flofire\TaobaoSDK\Top\RequestInterface; /** * TOP API: taobao.wlb.waybill.i.querydetail request * * @author auto create * @since 1.0, 2015.11.03 */ class WlbWaybillIQuerydetailRequest implements RequestInterface { /** * 面单查询请求 **/ private $way...
<?php declare(strict_types = 1); namespace SlevomatCodingStandard\Sniffs\ControlStructures; use PHP_CodeSniffer\Files\File; use PHP_CodeSniffer\Util\Tokens; use SlevomatCodingStandard\Helpers\FixerHelper; use SlevomatCodingStandard\Helpers\IndentationHelper; use SlevomatCodingStandard\Helpers\SniffSettingsHelper; use...