text stringlengths 2 1.03M |
|---|
<?php
namespace App\Http\Requests\Admin\Estado;
use Illuminate\Foundation\Http\FormRequest;
use Illuminate\Support\Facades\Gate;
class BulkDestroyEstado extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize(): b... |
<?php
return [
'id' => 'basic-admin',
'name' => 'Pay Point',
'basePath' => dirname(__DIR__),
'defaultRoute' => 'site/index',
'controllerNamespace' => 'admin\controllers',
'bootstrap' => ['log'],
'components' => [
'errorHandler' => [
'class' => 'admin\components\Exception... |
<?php
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
class DatabaseSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
Model::unguard();
$this->call(User::class);
$this->call(Post::class);
... |
<?php
declare(strict_types=1);
namespace Adam1658\JsonLensTest\Fixtures;
use Adam1658\JsonLens\AbstractLens;
class UnionLens extends AbstractLens
{
protected $schema = 'http://example.com/union.json';
public static function buildNewValue()
{
return new \stdClass();
}
public function get... |
<?php
/* SensioDistributionBundle:Configurator/Step:secret.html.twig */
class __TwigTemplate_d19b1c6264fd03ad5a12b3503b77def9236c9e7af7611f4ff63dba35daa9a0d6 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
// line 1
$this->parent ... |
<?php
/**
* List and paging of category members.
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This prog... |
<?php
namespace App\Http\Controllers\API;
use App\Tools;
use App\SolicitudRecordHistorial;
use App\SolicitudRecordHistorialTools;
use App\Http\Requests\StoreSolicitudRecordHistorial;
use Psr\Log\LoggerInterface;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\Auth;
use... |
<?php
namespace App\Http\Controllers;
use App\Models\TipoPregunta;
use Illuminate\Http\Request;
use App\Http\Controllers\Controller;
class TipoPreguntaController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
... |
@extends('layouts.dashboard')
@section('content')
@include('general.pageheader',[
'section' => 'Tiendas',
'sectionUrl' => '/shops',
'pageTitle' => 'Tienda',
'url' => '/shops',
'actions' => [
'Mostrar Todos' => '/shops',
'Crear Tiendas' => '/shops/crea... |
<?
namespace addons\cms\validate;
use think\Validate;
//文章验证器
class Product extends Validate
{
protected $rule = [
'cateid' => 'require',
// 'title' => 'require|max:100',
'content' => 'require',
];
protected $message = [
'cateid.require' => '请选择产品类别',
// '... |
<?php
/*
* Copyright 2014 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy of
* the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed t... |
<?php
namespace Manager\Logic;
/**
* Class SignLogic
* @package Manager\Logic
* 签到逻辑层
*/
class SignLogic extends BaseLogic {
/**
* @param array $request
* @return array
* 获取列表
*/
function getList($request = array()){
$param['where']['sign.status'] = array('neq',9);
$p... |
<!-- BEGIN FOOTER -->
<footer>
<div class="page-footer">
<div class="page-footer-inner"> 2016 © Metronic Theme By
<a target="_blank" href="http://keenthemes.com">Keenthemes</a> |
<a href="http://themeforest.net/item/metronic-responsive-admin-dashboar... |
<?php declare(strict_types=1);
namespace Stefna\PersonContract\Entities;
use Stefna\PersonContract\Values\Gender;
interface PersonWithDoB extends Person
{
public function getGender(): Gender;
public function getDateOfBirth(): \DateTimeImmutable;
} |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class OrganizationRoleTable extends Migration
{
// if (Schema::hasTable('users')) {
// //
// }
//
// if (Schema::hasColumn('users', 'email')) {
// //
// }
... |
<?php
return [
/*
|--------------------------------------------------------------------------
| Application Name
|--------------------------------------------------------------------------
|
| This value is the name of your application. This value is used when the
| framework needs to plac... |
<?php
namespace App\Console\Commands\Cron;
use App\Models\Installment;
use App\Models\InstallmentItem;
use Carbon\Carbon;
use Illuminate\Console\Command;
use function Sodium\add;
class CalculateInstallmentFine extends Command
{
/**
* The name and signature of the console command.
*
* @var string
... |
<?= $this->extend('template') ?>
<?= $this->section('content') ?>
<div class="row">
<div class="col-lg-12"><br />
<ol class="breadcrumb">
<li><a href="<?= base_url('admin/peminjaman'); ?>">Peminjaman</a></li>
<li class="active"><?= $title ?></li>
</ol>
</div>
</div>
<?php if (session()->getFl... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use App\Models\User;
Use App\Models\Panier;
class UserController extends Controller
{
//
public function index(Request $request){
return $request->user();
}
public function store(Request $... |
@extends('admin.layout.admin')
@section('title','View Page')
@section('style')
@endsection
@section('content')
<div class="content-body " id="contentbody">
<div class="card">
<div class="d-sm-flex align-items-right justify-content-between mg-b-5 mg-lg-b-5 mg-xl-b-5">
<div>
<na... |
<?php
session_start();
include '../db/conect.php';
?>
<?php
if(isset($_POST['dangnhap'])) {
$taikhoan = $_POST['email'];
$matkhau = md5($_POST['pass']);
if($taikhoan== "" || $matkhau=="") {
echo '<script>alert("Bạn hãy nhập đủ thông tin")</script>';
}
else {
$sql_select_admin = m... |
<?php
$main_template_content =
'
<h4 style="text-align: center; color: #369; border-bottom: 1px dotted #999;">Kontakt z serwisem</h4>
'.
$this->get_content() . $this->show_message() . '</div></div>';
?> |
<?php
namespace App;
use App\Http\Comment;
use Auth;
use Illuminate\Database\Eloquent\Model;
class Picture extends Model
{
protected $guarded = ['_token'];
protected $fillable = [
'title',
'description',
'source',
'user_id',
'picture_rate',
'picture_id',
... |
<html>
<head>
<title>
Codeigniter
</title> |
<@php
namespace {namespace};
use {useStatement};
class {class} extends {extends}
{
<?php if ($type === 'controller'): ?>
/**
* Return an array of resource objects, themselves in array format
*
* @return mixed
*/
public function index()
{
//
}
/**
* Return the properties of a resource object
*
*... |
<?php
/**
* @package AspieSoftAutoEmbed
*/
/*
Plugin Name: Auto Embed (YouTube, Facebook, PDF, Image, And More)
Plugin URI: https://github.com/AspieSoft/aspiesoft-auto-embed
Description: Easily Embed Dynamic Lazy Loading Youtube Videos Simply By Pasting The Url.
Version: 1.4.9
Author: AspieSoft
Author URI: https://www.... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateHinhanhTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('hinhanh', funct... |
<?php
/*
* This file is part of the Chameleon System (https://www.chameleonsystem.com).
*
* (c) ESONO AG (https://www.esono.de)
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
class TPkgShopOrderStatusMapper_Status extends Abstra... |
<?hh // strict
/*
* Copyright (c) 2004-present, Facebook, Inc.
* All rights reserved.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
*/
namespace HH\Lib\Keyset;
use namespace HH\Lib\C;
/**
* Returns a new keyset containing o... |
<?php
namespace BssOpenApi\Request\V20171214;
/**
* @deprecated Please use https://github.com/aliyun/openapi-sdk-php
*
* Request of ConvertChargeType
*
* @method string getPeriod()
* @method string getProductCode()
* @method string getSubscriptionType()
* @method string getOwnerId()
* @method string getProdu... |
<?php
class UserTableSeeder extends Seeder
{
public function run()
{
/*DB::table('users')->delete();
User::create(array(
'name' => 'Chris Sevilleja',
'username' => 'sevilayha',
'email' => 'chris@scotch.io',
'password' => Hash::make('awesome'),
));*/
}
} |
@extends('layout.layout')
@section('title','Highlight Assignment')
@section('content')
<main role="main" class="container">
<div class="container">
<div class="input-group">
<input id="search" type="text" placeholder="Highlight in text">
<button id="search-button">Search</button>
... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
class ImageUploadController extends Controller
{
return view('image,upload');
}
public function ImageUploadPost(Request $request)
{
$request->validate([
'image' => 'required|image|mimes:jpeg,png,jpg,gif,svg|max:2048',
])
$imageName =... |
<?php
declare(strict_types=1);
namespace Neucore\Service;
use Eve\Sso\AuthenticationProvider;
use Eve\Sso\EveAuthentication;
use Eve\Sso\InvalidGrantException;
use League\OAuth2\Client\Token\AccessToken;
use League\OAuth2\Client\Token\ResourceOwnerAccessTokenInterface;
use Neucore\Data\DirectorToken;
use Neucore\Ent... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Http\Resources\RecResource as RecResource;
use App\Reclamation;
use App\Http\Requests\RecCreateRequest;
use App\Http\Requests\UpdateRecRequest;
class ReclamationController extends Controller
{
public function index()
{
$recs... |
<?php
/* @var $this yii\web\View */
/* @var $form yii\bootstrap\ActiveForm */
/* @var $model \common\models\LoginForm */
use yii\helpers\Html;
use yii\bootstrap\ActiveForm;
use frontend\assets\AppAsset_1;
AppAsset_1::register($this);
$this->title = 'Iniciar sesión';
$this->params['breadcrumbs'][] = $this->title;
?>... |
<?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
declare(strict_types=1);
/**
* This file is part of the Carbon package.
*
* (c) Brian Nesbitt <brian@nesbot.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Tests\Localization;
class EnWsTest extends Localizat... |
<?php namespace GestorImagenes\Http\Controllers;
use GestorImagenes\Http\Requests\EditarPerfilRequest;
use Illuminate\Support\Facades\Auth;
class UsuarioController extends Controller {
/*
|--------------------------------------------------------------------------
| Home Controller
|------------------------------... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class Produit extends Model
{
public $fillable = ['label','prix','categorie_id'];
public function categorie(){
return $this->belongsTo('App\Models\Categorie');
}
publ... |
<?php
namespace App\Providers;
use Illuminate\Support\Facades\Route;
use Illuminate\Foundation\Support\Providers\RouteServiceProvider as ServiceProvider;
class RouteServiceProvider extends ServiceProvider
{
/**
* This namespace is applied to your controller routes.
*
* In addition, it is set as th... |
<ul>
<li><a href="<?php echo site_url(SITE_AREA . '/settings/emailer'); ?>"><?php echo lang('bf_menu_email_settings'); ?></a></li>
<li><a href="<?php echo site_url(SITE_AREA . '/settings/emailer/template'); ?>"><?php echo lang('bf_menu_email_template'); ?></a></li>
<li><a href="<?php echo site_url(SITE_AREA... |
<?php
/**
* @license LGPLv3, http://opensource.org/licenses/LGPL-3.0
* @copyright Aimeos (aimeos.org), 2018-2021
* @package Controller
* @subpackage Common
*/
namespace Aimeos\Controller\Common\Catalog\Import\Csv;
/**
* Common class for CSV catalog import job controllers and processors.
*
* @package Contro... |
@extends("plantilla.base")
@section('titulo')
PENALES 1 - PARTE
@endsection
@section('plugins')
<!-- DataTables CSS-->
<link rel="stylesheet" href="{{asset("assets/plugins/datatables/datatables.min.css")}}">
<!-- Select2 CSS-->
<link rel="stylesheet" href="{{asset("assets/plugins/select2/css/select2.min.css")}}">
<!-- ... |
<?php
use app\components\CustomMigration;
/**
* Class m200426_130125_create_beneficaries_nik_logs */
class m200426_130125_create_beneficaries_nik_logs extends CustomMigration
{
/**
* {@inheritdoc}
*/
public function safeUp()
{
$this->createTable('beneficiaries_nik_logs', [
'... |
<?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
/**
* This is NOT a freeware, use is subject to license terms
* @copyright Copyright (c) 2010-2099 Jinan Larva Information Technology Co., Ltd.
* @link http://www.larva.com.cn/
* @license http://www.larva.com.cn/license/
*/
namespace TencentCloudCMQ\Requests;
use TencentCloudCMQ\Http\BaseRequest;
class G... |
<?php
/*
* Author: National Research Council Canada
* Website: http://www.nrc-cnrc.gc.ca/eng/rd/ict/
*
* License: Creative Commons Attribution 3.0 Unported License
* Copyright: Her Majesty the Queen in Right of Canada, 2015
*/
return array(
'missions_organization:name' => 'Nom',
'missions_organization:abbrevi... |
<?php
namespace SyAliPay\Zhima\Credit\Score;
/**
* ALIPAY API: zhima.credit.score.brief.get request
*
* @author auto create
*
* @since 1.0, 2021-07-14 10:12:44
*/
class BriefGetRequest
{
/**
* 芝麻信用评分普惠版
*/
private $bizContent;
private $apiParas = [];
private $terminalType;
private ... |
<?php
/*
* Copyright (c) Ouzo contributors, http://ouzoframework.org
* This file is made available under the MIT License (view the LICENSE file for more information).
*/
use Ouzo\Http\AcceptHeaderParser;
use PHPUnit\Framework\TestCase;
class AcceptHeaderParserTest extends TestCase
{
/**
* @test
*/
... |
<?php
namespace Buan;
class HttpRequest
{
private $options = [];
private $server = [];
/**
* Any elements missing from the $options array will be filled with information
* about the current request environment.
*
* @param array $options Options
*/
public function __construct... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Model;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Illuminate\Support\Facades\Hash;
class User extends Authenticatable
{
protected $fillable = [
... |
<?php
namespace Oro\Bundle\ActionBundle\Resolver;
use Oro\Bundle\ActionBundle\Model\OptionsAssembler;
use Oro\Component\ConfigExpression\ContextAccessor;
class OptionsResolver
{
/** @var OptionsAssembler */
protected $optionsAssembler;
/** @var ContextAccessor */
protected $contextAccessor;
/**... |
<?php
/**
* Created by PhpStorm.
* User: a123
* Date: 17/7/4
* Time: 上午9:50
*/
namespace backend\controllers\CustomActions;
use backend\business\WeChatUserUtil;
use backend\business\WeChatUtil;
use backend\components\ExitUtil;
use common\models\AttentionEvent;
use common\models\Resource;
use yii\base\Action;
c... |
<?php
/* Cachekey: cache/stash_default/doctrine/[concrete\core\entity\attribute\value\value\selectvalueoption$avselectoptionid@[annot]][1]/ */
/* Type: array */
/* Expiration: 2017-04-24T05:01:43+00:00 */
$loaded = true;
$expiration = 1493010103;
$data = array();
/* Child Type: array */
$data['return'] = unserial... |
<?php
$login_required = true;
// login required
if($login_required){
if(!isset($core)){
require_once 'filemanager_core.php';
$core = new filemanager_core();
}
if(!$core->isLogin()) exit('<strong>Forbidden</strong><br>You need to <a href=".">login</a> to use the X3 DB checker.');
}
$css_path = dirname(dirname... |
<?php
final class DiffusionCommitDiffContentAddedHeraldField
extends DiffusionCommitHeraldField {
const FIELDCONST = 'diffusion.commit.diff.new';
public function getHeraldFieldName() {
return pht('Diff content added');
}
public function getFieldGroupKey() {
return DiffusionChangeHeraldFieldGroup::... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
if($this->session->userdata("user_type") == "admin")
$this->load->view('inc/admin_header');
else
$this->load->view('inc/header');
?>
<body>
<div class="se-pre-con"></div>
<div class="page-container">
<!--/cont... |
<?php
namespace Michelmelo\LaravelTelegramLogs\Commands;
use Illuminate\Console\Command;
class LaravelTelegramLogsCommand extends Command
{
public $signature = 'laravel-telegram-logs';
public $description = 'My command';
public function handle()
{
$this->comment('All done');
}
} |
<?php
use yii\helpers\Html;
use yii\helpers\Url;
use yii\widgets\ActiveForm;
use mihaildev\ckeditor\CKEditor;
use dosamigos\fileupload\FileUpload;
/* @var $this yii\web\View */
/* @var $model app\models\Users */
$title = (isset($this->params['title'])) ? $this->params['title'] : '';
$this->params['breadcrumbs'][] = [... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class List_heds extends Model
{
protected $table ='list_heds';
protected $guaded = array('id');
public static $rules = array(
'list_date' => 'required',
'image_path' => 'required',
);
public function list_dtls()
{
return $this->ha... |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/animate.css">
<title>E... |
<?hh // partial
namespace {
///////////////////////////////////////////////////////////////////////////////
// helpers
// This doc comment block generated by idl/sysdoc.php
/**
* ( excerpt from http://php.net/manual/en/class.reflector.php )
*
* Reflector is an interface implemented by all exportable Reflection
*... |
<?php
namespace App\Controllers;
use App\Controllers\BaseController;
use CodeIgniter\API\ResponseTrait;
use App\Models\UserModel;
use \Firebase\JWT\JWT;
class Login extends BaseController
{
use ResponseTrait;
public function index()
{
$userModel = new UserModel();
$email... |
@extends('layouts.app')
@section('content')
<div class="card-body">
@if (session('status'))
<div class="alert alert-success" role="alert">
{{ session('status') }}
{{ Session::put('status',null) }}
</div>
@endif
<h4 class="text-center">Lấy Lại Mật Khẩu</h4>
<hr>
<form me... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/*
| -------------------------------------------------------------------
| DATABASE CONNECTIVITY SETTINGS
| -------------------------------------------------------------------
| This file will contain the settings needed to access your database.
|
|... |
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row">
<h1>Add new Department</h1>
</div>
<div class="row">
<form action="department" method="post">
@csrf
@if ($errors->any())
<div clas... |
@include('admin.includes.alerts')
<div class="form-group">
<label>* Título:</label>
<input type="text" name="title" class="form-control" placeholder="Título:" value="{{ $product->title ?? old('title') }}">
</div>
<div class="form-group">
<label>* Imagem:</label>
<input type="file" name="image" class="f... |
<?php
if (!defined('BASEPATH'))
exit('No direct script access allowed');
class Action_budgetaire_model extends CI_Model
{
public $table = 'action_budgetaire';
public $id = 'id';
public $order = 'DESC';
function __construct()
{
parent::__construct();
}
public function select_sum()
{
$this->db->select([... |
<?php
/*
there indexs are created to improve speed of frame data import
changes are proposed by shipa and confirmed by pankaj
*/
$ignoreAuth = true;
require_once(dirname('__FILE__')."/../config/config.php");
$sql = $errors = array();
$sql[]="ALTER TABLE `in_reason` ADD `not_editable` TINYINT( 1 ) NOT NULL";
$sql[... |
@extends('layouts.index')
@section('content')
<section class="py-1">
<div class="container px-4 px-lg-5 mt-5">
<div class="row gx-4 gx-lg-5 row-cols-2 row-cols-md-3 row-cols-xl-4 justify-content-center">
@each('dashboards.cards',$products,'products','dashboards.no-models')
... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreatePostsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('posts', function ... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Dokter extends Model
{
protected $table = 'dokters'; // -> meminta izin untuk mengakses table dosens
protected $fillable = ['nama','profesi','status']; // -> field apa saja yang boleh di isi -> fill = mengisi, able = boleh jadi fillable = bol... |
<?php
/**
*
* This file is part of the phpBB Forum Software package.
*
* @copyright (c) phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* For full copyright and license information, please see
* the docs/CREDITS.txt file.
*
*/
/**
* @ignore
*/
if (!defined('IN_PHPBB')... |
<?php
use App\Http\Controllers\UserController;
use Illuminate\Support\Facades\Route;
/*
|--------------------------------------------------------------------------
| Web Routes
|--------------------------------------------------------------------------
|
| Here is where you can register web routes for your applicatio... |
<?php $__env->startSection('content'); ?>
<div class="modal fade" id="modal-new-extras" tabindex="-1" role="dialog" aria-labelledby="modal-form" aria-hidden="true">
<div class="modal-dialog modal- modal-dialog-centered modal-" role="document">
<div class="modal-content">
<div cla... |
<?php
namespace WebTheory\Taxroles\Facades;
use Leonidas\Framework\App\Forms\FormRepository;
class Forms extends _Facade
{
protected static function _getFacadeAccessor()
{
return FormRepository::class;
}
} |
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
class CategrorySeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
//
}
} |
.form-group
- echo Form::button($options['label'], $options['attr']) |
<?php
namespace App\Http\Controllers\User;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\Http\Requests\UserRequestUpdateInfo;
use Illuminate\Support\Facades\DB;
use App\User;
class UserInfoController extends Controller
{
public function updateInfo()
{
return view('user.upd... |
<?php
echo('hi, this is tape'); |
<?php
use Core\Error;
use Helpers\Session;
?>
<div class="row">
<div class="col-lg-12">
<?php echo Error::display(Session::pull('message'), 'alert alert-success'); ?>
</div>
</div>
<div class="row">
<div class="col-lg-12">
<div class="tabbable" style="margi... |
<script src="{{asset('assets/global/plugins/respond.min.js')}}"></script>
<script src="{{asset('assets/global/plugins/excanvas.min.js')}}"></script>
<script src="{{asset('assets/global/plugins/ie8.fix.min.js')}}"></script>
<![endif]-->
<!-- BEGIN CORE PLUGINS -->
<script src="{{asset('assets/global/plugins/bootstrap/js... |
<!DOCTYPE html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Laravel</title>
<!-- Fonts -->
<link href="https://fonts.googleapis.com/css?family=Nunito:... |
@extends('layouts.dashboard')
@section('content')
@if(isset($sub_menu))
@include('dashboard.partials.sub-sidebar')
@endif
<div class="content-wrapper">
@if(isset($sub_menu))
@foreach($sub_menu as $key => $item)
@if ($key == $current_menu && array_get($item, 'sub_... |
<?php
/**
* DO NOT EDIT THIS FILE!
*
* This file was automatically generated from external sources.
*
* Any manual change here will be lost the next time the SDK
* is updated. You've been warned!
*/
namespace DTS\eBaySDK\Trading\Types;
/**
*
* @property string $Primary
* @property string $Secondary
* @prop... |
<?php
/**
* ------- U-232 Codename Trinity ----------*
* ---------------------------------------------*
* -------- @authors U-232 Team --------------*
* ---------------------------------------------*
* ----- @site https://u-232.duckdns.org/ ----*
* ---------------------------------------------*
* ----- ... |
@extends('layouts.panel')
@section('content')
<div class="card shadow">
<div class="card-header border-0">
<div class="row align-items-center">
<div class="col">
<h3 class="mb-0">Cita #{{$appointment->id}}</h3>
</div>
</div>
</div>
<div class="card-body">... |
<?php
namespace App\Providers\Module;
use Illuminate\Support\ServiceProvider;
class ModuleServiceProvider extends ServiceProvider
{
/**
* Bootstrap any application services.
*
* @return void
*/
public function boot()
{
//
}
/**
* Register any application services... |
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK IT ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006-2014 http://thinkphp.cn All rights reserved.
// +----------------------------------------------... |
<?php
return [
/*
|--------------------------------------------------------------------------
| Look & feel customizations
|--------------------------------------------------------------------------
|
| Make it yours.
|
*/
// Date & Datetime Format Syntax: https://carbon.nesbot.co... |
<?php
/**
* @package ImpressPages
* @copyright Copyright (C) 2011 ImpressPages LTD.
* @license GNU/GPL, see ip_license.html
*/
if (!defined('BACKEND')) exit;
//$parameterValue ["standard"]["configuration"]["advanced_options"]["administrator_interface_language"] = "en" //insert RFC 4646 code of language int... |
<?php
use Symfony\Component\Config\Loader\LoaderInterface;
use Sulu\Component\HttpKernel\SuluKernel;
/**
* The abstract kernel holds everything that is common between
* AdminKernel and WebsiteKernel
*/
abstract class AbstractKernel extends SuluKernel
{
/**
* {@inheritDoc}
*/
public function regis... |
<script type="text/javascript">
$(function(){
$('#cancelar').click(function(){
$('#replace').show();
$('#file-word').hide();
});
});
</script>
<style>
#file-word{ display: none; }
td{padding:5px;}
</style>
<h2 class="subtitulo">Descripción<br/><span>descripcion general del ... |
<?php
namespace App\Http\Controllers;
use App\Zakazky;
use App\Order;
use App\Customer;
use App\Service;
use App\ServiceCategory;
use App\ServicePrice;
use App\Paper;
use App\PaperFormat;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Auth;
use Illuminate\Http\RedirectResponse;
class ZakazkyController e... |
<!doctype html>
<html lang="{{ str_replace('_', '-', app()->getLocale()) }}">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
{{-- Bootstrap-CSS --}}
<link href="https:/... |
<?php
/*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS B... |
<?php
namespace Illuminate\Database\Eloquent\Concerns;
use Illuminate\Support\Str;
trait GuardsAttributes
{
/**
* The attributes that are mass assignable.
*
* @var array
*/
protected $fillable = [];
/**
* The attributes that aren't mass assignable.
*
... |
<?php
namespace App\Exceptions;
use Illuminate\Auth\AuthenticationException;
use Illuminate\Foundation\Exceptions\Handler as ExceptionHandler;
use Throwable;
class Handler extends ExceptionHandler
{
/**
* A list of the exception types that are not reported.
*
* @var array
*/
protected $do... |
<?php
namespace App\Presenters;
use McCool\LaravelAutoPresenter\BasePresenter;
/**
* This is the order presenter class.
*
* @author J.W
*/
class ReceivablePresenter extends BasePresenter
{
public function type_text()
{
$value = $this->getWrappedObject()->type;
switch (... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.