text
stringlengths
2
1.03M
<!DOCTYPE html> <html> <head> <title>@yield('title', 'My First Webpage!')</title> </head> <link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.7.2/css/bulma.css"> <body> <div class="container" style="margin-top: 1em;"> @yield('content') <br> <aside class="menu"> <p class="men...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class CreateGeneratesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { DB::unprepared(' ...
<?php header("Content-Type: application/json"); header("Expires: 0"); header("Last-Modified: " . gmdate("D, d M Y H:i:s") . " GMT"); header("Cache-Control: no-store, no-cache, must-revalidate"); header("Cache-Control: post-check=0, pre-check=0", false); header("Pragma: no-cache"); header('Access-Control-Allow-Origin: *...
@extends('layouts.Template-admin') @section('content') {{-- SECTION MENU INTERNO HOME --}} <section class="container-fluid"> <div class="col-xs-12 col-sm-12 col-md-12 col-lg-12 sectionMenuInterno menuInernoBoard"> <ul> <li><a href="">Home</a></li> <li class="active"><a href="">Board</a></li> ...
<!DOCTYPE html> <html lang="en"> <head> @include('user.layouts.shared/title-meta', ['title' => $title]) @include('user.layouts.shared/head-css') {{--@include('layouts.shared/head-css', ["demo" => "dark"])--}} </head> <body @yield('body-extra')> <!-- Begin page --> <div id="wrapper"> @include('user.lay...
<?php namespace Ups\Entity\Pickup; use Ups\Entity\SerializableEntity; class PickupCancelRequest extends SerializableEntity { /** * Cancel pickup by Pickup Request Number (PRN). Valid values: * - accountnumber * - prn * @var string */ private $CancelBy; /** * The pickup re...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class CoursesToSkill extends Model { protected $fillable = ['lvl', 'FK_course', 'FK_skill']; protected $dates = ['created_at', 'updated_at']; public $timestamps = false; }
<?php namespace App\Filament\Resources\MerchantResource\Pages; use App\Filament\Resources\MerchantResource; use Filament\Resources\Pages\CreateRecord; class CreateMerchant extends CreateRecord { protected static string $resource = MerchantResource::class; }
<?php namespace AscendLearning\Lti\Storage; use AscendLearning\Lti\Entities\Consumer; use AscendLearning\Lti\Entities\Context; use AscendLearning\Lti\Entities\Nonce; use Doctrine\Common\Collections\Criteria; use Doctrine\ORM\EntityManager; use Doctrine\ORM\EntityManagerInterface; use Franzl\Lti\ConsumerNonce; use Fran...
<?php namespace N98\Magento\Command\System\Setup; use N98\Magento\Command\TestCase; use Symfony\Component\Console\Tester\CommandTester; class RunCommandTest extends TestCase { public function testExecute() { $application = $this->getApplication(); $application->add(new CompareVersionsCommand(...
<?php use yii\helpers\Html; use yii\grid\GridView; use yii\widgets\Pjax; /* @var $this yii\web\View */ /* @var $searchModel app\modules\admin\models\Userr */ /* @var $dataProvider yii\data\ActiveDataProvider */ $this->title = 'Users'; $this->params['breadcrumbs'][] = $this->title; ?> <div class="user-index"> <h1...
<?php namespace Tests\Unit\Requests\Transactions; use App\Category; use App\Http\Requests\Transactions\UpdateRequest as TransactionUpdateRequest; use App\Partner; use Illuminate\Foundation\Testing\RefreshDatabase; use Tests\TestCase; use Tests\Traits\ValidateFormRequest; class UpdateRequestTest extends TestCase { ...
<!-- General CSS Files --> <link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.3.1/css/bootstrap.min.css" integrity="sha384-ggOyR0iXCbMQv3Xipma34MD+dH/1fQ784/j6cY/iJTQUOhcWr7x9JvoRxT2MZw1T" crossorigin="anonymous"> <link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.7.2/css/all....
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Enter laptop specifications</title> </head> <body> <form action="{{url('/store')}}" method="post"> @csrf <div class="form-group"> <label>Laptop Bra...
<?php namespace frontend\controllers; use Yii; use yii\web\Controller; use yii\web\NotFoundHttpException; use yii\helpers\Url; use common\crawler\CsgoCrawler; /** * Site controller */ class CsgoController extends Controller { public $gameId = \common\crawler\CrawlerBase::CSGO; // 搜索 public function ac...
<?php namespace App\Models; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\Factories\HasFactory; class Area extends Model { use HasFactory; protected $fillable = ['nome','user_id']; public function user(){ return $this->belongsTo(User::class); } public static f...
<?php class m160906_172605_mainpage extends CDbMigration { public function up() { $this->createTable('mainpage', array( 'id' => 'pk', 'text' => 'text NOT NULL', 'title' => 'varchar(255) NOT NULL', 'seo_description' => 'text NOT NULL', 'seo_key...
<?php namespace Namecheap\Command { interface ICommand { /** * @param Namecheap\Config $config */ public function config(\Namecheap\Config $config); /** * Should return the command string * @return string */ public function command(); /** * Should return an array of parameters that the ...
@extends('layouts.app2') @section('content') <div class="container mt-3"> <div class="row top"> <div class="col-12"> <h3><strong>購買二手票流程</strong></h3> </div> </div> </div> <div class="container"> <ul class="nav nav-tabs nav-justified" style="margin-top:20px;"> <li class="col-4"> <a class...
<?php namespace App\Http\Controllers; use App\Ad; use App\Country; use App\Favorite; use App\User; use Carbon\Carbon; use Illuminate\Http\Request; use App\Http\Requests; use Illuminate\Support\Facades\Auth; use Illuminate\Support\Facades\Hash; use Illuminate\Support\Facades\Mail; use Illuminate\Support\Facades\Stora...
<?php namespace Muan\Admin\Http\Requests; /** * Class UpdateBlockRequest * * @package Muan\Admin\Http\Requests */ class UpdateBlockRequest extends CreateRoleRequest { /** * Get data to be validated from the request. * * @return array */ protected function validationData() { ...
<?php declare(strict_types=1); namespace Rector\Core\Rector\AbstractRector; use PhpParser\Node; use PhpParser\Node\Expr; use PhpParser\Node\Expr\Assign; use PhpParser\Node\Expr\MethodCall; use PhpParser\Node\Expr\PropertyFetch; use PhpParser\Node\Expr\StaticCall; use PhpParser\Node\Expr\StaticPropertyFetch; use PhpP...
<!doctype html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> <meta http-equiv="X-UA-Compatible" content="ie=edge"> <title>Document</title> </head> <body> <a href="{{...
<!doctype html> <html lang="<?php echo e(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="<?php echo e(csrf_token()); ?>"> <title><?php echo e(con...
<?php /** * Created by IntelliJ IDEA. * User: anhkuproduction * Date: 11/23/17 * Time: 11:15 AM */ namespace App\Repositories\Product; use App\Models\Product; use App\Repositories\AbstractRepository; class ProductRepository extends AbstractRepository implements ProductRepositoryInterface { /** * get m...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddRoleIdToUsersTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('users', funct...
<?php namespace App; use Illuminate\Database\Eloquent\Model; /** * @property integer $permission_id * @property integer $team_id * @property integer $user_id * @property string $user_type * @property Permission $permission * @property Team $team */ class Permission_user extends Model { /** * The tabl...
<?php namespace App\Http\Middleware; use App\Providers\RouteServiceProvider; use Closure; use Illuminate\Http\Request; use Illuminate\Support\Facades\Auth; class RedirectIfAuthenticated { /** * Handle an incoming request. * * @param Request $request ...
<?php /* @var $model common\models\Organisation */ use yii\helpers\Html; $this->title = Yii::t('app', 'Создать'); ?> <div class="task-create box-padding"> <div class="panel panel-default"> <div class="panel-heading" style="background: #fff;"> <h3 class="text-center" style="color: #333;"> ...
<?php /* * CKFinder * ======== * http://cksource.com/ckfinder * Copyright (C) 2007-2015, CKSource - Frederico Knabben. All rights reserved. * * The software, this file and its contents are subject to the CKFinder * License. Please read the license.txt file before using, installing, copying, * modifying or distr...
<?php declare(strict_types=1); namespace Phan\PluginV3; use Exception; /** * This is thrown to prevent Phan from running its own analysis after analyzeFunctionCall. * * This is used for tricky signatures such as join, which can take (array, string) or (string, array) when there are two arguments. */ class StopPa...
<?php namespace App\Http\Controllers; use App\Http\Requests; use App\Http\Requests\CreateDiagnosticRequest; use App\Http\Requests\UpdateDiagnosticRequest; use App\Libraries\Repositories\DiagnosticRepository; use Flash; use Mitul\Controller\AppBaseController as AppBaseController; use Response; class DiagnosticControll...
<?php declare(strict_types=1); namespace EMS\CommonBundle\Storage\Service; use Psr\Http\Message\StreamInterface; interface StorageInterface { /** @var int */ public const STORAGE_USAGE_CACHE = 0; /** @var int */ public const STORAGE_USAGE_CONFIG = 1; /** @var int */ public const STORAGE_USAG...
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Trang thông tin người dùng</title> <link rel="stylesheet" href="https://bootswatch.com/4/simplex/bootstrap.min.css"/> <link href="//maxcdn.bootstrapcdn.com/boo...
<?php /** * Ffuenf_StyleSwitcher extension. * * NOTICE OF LICENSE * * This source file is subject to the MIT 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://opensource.org/licenses/mit-license.php * * @category Ffue...
<?php /* * Copyright 2012 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 agre...
<x-app-layout> <x-slot name="header"> Relatorios </x-slot> <div class="py-12"> <div class="max-w-7xl mx-auto sm:px-6 lg:px-8"> <div class="bg-gray-300 overflow-hidden shadow-sm sm:rounded-lg"> <div class="p-6 bg-gray-100 border-b"> <div> ...
<?php namespace App; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class MemberPhotos extends Model { use SoftDeletes; protected $table="member_photos"; protected $dates = ['deleted_at']; public function member() { $this->belongsTo('App\Members', 'f...
<?php /** * Main view used to generate menu. * * @author Krzysztof Trzos * @package menu * @subpackage views * @since 1.0.0-dev * @version 1.3.0-dev */ use Plethora\View; ?> <?php /* @var $submenuClasses array */ ?> <?php /* @var $entries array */ ?> <?php /* @var $level integer */ ?> <u...
<?php /** * Product quantity inputs * * @package WordPress * @subpackage Rider404 * * @version 4.0.0 */ use Timber\{ Timber }; $filename = 'woocommerce/globals/quantity-input.html.twig'; /* translators: %s: Quantity. */ $data['label'] = ! empty( $args['product_name'] ) ? sprintf( esc_html__( '%s quantit...
<?php namespace Df\Payment\Operation\Source; use Magento\Sales\Model\Order\Creditmemo as CM; # 2017-04-08 final class Creditmemo extends Order { /** * 2017-04-08 * @override * @see \Df\Payment\Operation\Source\Creditmemo::id() * @used-by \Df\Payment\Operation::id() * @return string */ function id() {retur...
@extends('adminlte::page') @section('title', 'Cadastrar Novo Cargo') @section('content_header') <h1>Cadastrar Novo Cargo</h1> @stop @section('content') <div class="card"> <div class="card-body"> <form action="{{route('roles.store')}}" class="form" method="post"> ...
<?php /* * Copyright (c) 2017-2018 THL A29 Limited, a Tencent company. All Rights Reserved. * * 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/LICENS...
<?php declare(strict_types = 1); namespace SlevomatCodingStandard\Sniffs\TypeHints; use SlevomatCodingStandard\Helpers\SniffSettingsHelper; use SlevomatCodingStandard\Helpers\TokenHelper; class ReturnTypeHintSpacingSniff implements \PHP_CodeSniffer\Sniffs\Sniff { public const CODE_NO_SPACE_BETWEEN_COLON_AND_TYPE_H...
<?php namespace App\Models; use \DateTimeInterface; use Carbon\Carbon; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; use Illuminate\Database\Eloquent\SoftDeletes; class AnticiposViaje extends Model { use SoftDeletes; use HasFactory; public $table = 'antic...
<?php namespace App; use Illuminate\Database\Eloquent\Model; class Keuangan extends Model { /** * The attributes that are mass assignable. * * @var array */ protected $fillable = [ 'jenis_dana', 'nominal', 'keterangan', 'nota', 'created_by' ]...
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class CreatePlayerTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('sone_esports_pla...
<?php use App\Http\Controllers\ProduitController; use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | Web Routes |-------------------------------------------------------------------------- | | Here is where you can register web routes for your applica...
<link rel="stylesheet" type="text/css" href="abc.css"><meta http-equiv="Content-Type" content="text/html;charset=utf-8" /><h1>Good Company Culture Is Not About Silly, Attention-Grabbing Perks</h1> <img itemprop="image" itemscope itemtype="https://schema.org/ImageObject" alt="Good Company Culture Is Not About ...
@extends('movie.parts.desing') @section('conteudo') <table class="table-auto"> <thead> <tr> <th> Movies</th> <th></th> <th></th> </tr> </thead> <tbody> @foreach ($movies as $movie) <tr> <td><a href="#">{{$movie->name...
<?php return [ /* |-------------------------------------------------------------------------- | Мовні ресурси для нагадування пароля |-------------------------------------------------------------------------- | | Наступні тексти будуть повернуті брокером паролів при помилкових | введенях пі...
<?php namespace Modules\FileBrowser\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Http\Response; use Illuminate\Routing\Controller; use Modules\FileBrowser\Models\File; use Modules\FileBrowser\Repositories\FileRepository; use Modules\FileBrowser\Http\Requests\EditFileRequest; use Modules\Helper\Helpe...
<?php namespace RozbehSharahi\Rexample\Domain\Model; use TYPO3\CMS\Extbase\DomainObject\AbstractEntity; use TYPO3\CMS\Extbase\Persistence\ObjectStorage; class Seminar extends AbstractEntity { /** * @var string */ protected $title; /** * @var string */ protected $description; ...
<?php $this->load->view('login/logHead'); ?> <<body> <div id="main-wrapper"> <div class="navbar navbar-inverse" role="navigation"> <div class="navbar-header"> <div class="logo"><h1>Selamat Datang</h1></div> </div> </div> <div class="template-page-wrapper"> <form class="f...
<?php namespace Ventas\Http\Controllers; use Illuminate\Http\Request; use Illuminate\Support\Facades\Config; use GuzzleHttp\Client; class ClientePedidoVendController extends Controller { public function __construct() { session_start(); } /** * Display a listing of the resource. * ...
<?php namespace App\Http\Controllers\User; use App\Http\Controllers\ApiController; use App\Models\User; use Illuminate\Http\Request; class UserRoleController extends ApiController { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index(Use...
<?php /* * This file is part of the a Mlankatech (PTY) LTD Project. * * (c) Mfana Ronald Conco <ronald.conco@mlankatech.co.za> * * For the full copyright and license information, please view the LICENSE. * * Created At: 2016/09/30 */ namespace AppBundle\DataFixtures\ORM; use Doctrine\Common\DataFixtures\Abstr...
<?php require_once "common_parts/_html_top.php"; ?> <body id="top"> <?php require_once "common_parts/_header.php"; ?> <div id="contents"> <div class="inner"> <div id="main"> <a href="search.html">検索</a> > <a href="<?php echo $back_link; ?>">検索結果一覧</a> > <?php echo $spot->name; ?> <se...
<?php namespace App\Http\Controllers; use App\Http\Controllers\Traits\Helpers; use Illuminate\Foundation\Bus\DispatchesJobs; use Illuminate\Routing\Controller as BaseController; use Illuminate\Foundation\Validation\ValidatesRequests; use Illuminate\Foundation\Auth\Access\AuthorizesRequests; class Controller extends ...
@extends('layouts.app') @section('content') <div class="container"> <div class="row justify-content-center"> <div class="col-md-4"> <div class="card-header">{{ __('Register') }}</div> <div role="tabpanel" class="tab-pane" id="register"> <for...
@extends('layouts.app') @section('content') <div class="box box-primary"> <div class="box-header with-border"> <h3 class="box-title">Edit Hire Duration</h3> </div> <form enctype="multipart/form-data" method="post" action="{{ route('hire.save_edit', ['id'=>$hire_duration->id]) }}"...
<?php namespace yii\cms\controllers\backend; use Yii; use yii\cms\components\Controller; use yii\data\Pagination; use yii\filters\AccessControl; use yii\filters\VerbFilter; use yii\helpers\ArrayHelper; use yii\helpers\Json; use yii\web\NotFoundHttpException; class DashboardController extends Controller { public fun...
<?php /** * Copyright (c) 2015-present, Facebook, Inc. All rights reserved. * * You are hereby granted a non-exclusive, worldwide, royalty-free license to * use, copy, modify, and distribute this software in source code or binary * form for use in connection with the web services and APIs provided by * Facebook. ...
<?php class Article extends CI_Controller { public function __construct() { /* * Kita dapat memanfaatkan magic method __construct untuk memanggil * method bawaan CI yang kita rasa akan sangat sering dignakan. Pada * kasus ini, kita akan menambahkan method helper() ke dalam ma...
<?php /* * This file is part of the Qsnh/meedu. * * (c) XiaoTeng <616896861@qq.com> * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ namespace App\Http\Requests\Backend\Administrator; use Illuminate\Support\Facades\Hash; use App\Http\Requests\B...
<?php namespace App\Http\Controllers\Api; use App\Http\Controllers\Controller; use App\Models\Location; use Illuminate\Http\Request; class LocationController extends Controller { /** * Display a listing of the resource. * * @return \Illuminate\Http\Response */ public function index() ...
<div class="modal-content"> <div class="modal-header"> <button type="button" class="close" data-dismiss="modal" aria-label="Close"><span aria-hidden="true">&times;</span></button> <h4 class="modal-title" id="myModalLabel">Maculopatia</h4> </div> <div class="modal-body"> <div id="carousel-example-gener...
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class AddNullableToProductsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('products...
<?php /** * Undocumented */ class SQL_Relation extends AbstractModel { public $f1 = null; // Foreign Table (actual name) // short_name = Foreign alias public $t = null; // Join kind (left|right|inner|cross etc.) public $expr = null; // Using expression when joining ...
<?php /** * League.Uri (https://uri.thephpleague.com/components/2.0/) * * @package League\Uri * @subpackage League\Uri\Components * @author Ignace Nyamagana Butera <nyamsprod@gmail.com> * @link https://github.com/thephpleague/uri-components * * For the full copyright and license information, pleas...
<?php namespace App\Http\Requests; use Illuminate\Foundation\Http\FormRequest; class HabitacionRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; } /** * Get...
<!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"> <title>Laravel</title> <!-- Fonts --> <link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.4.0/...
<?php namespace App\Http\Requests\UnidadMedida; use Illuminate\Foundation\Http\FormRequest; class UpdateUnidadMedidaRequest extends FormRequest { /** * Determine if the user is authorized to make this request. * * @return bool */ public function authorize() { return true; ...
<?php printfile("views/dashboard/user_reviews/ajax/list.blade.php"); $alts = array( "edit" => "Edit this rating", "delete" => "Delete this rating" ); ?> @if(\Session::has('message')) {!! message_show("Message!", \Session::get('message')) !!} @endif <div class="card"> <div clas...
<script type="text/javascript" src="<?php echo base_url("assets/js/validate/payroll/payrollStart.js"); ?>"></script> <div class="right_col" role="main"> <div class="row"> <div class="col-md-12 col-sm-12 col-xs-12"> <div class="x_panel"> <div class="x_title"> <h2><i class='fa fa-book'></i> PAYROLL - STAR...
<?php session_start(); if ( isset($_SESSION["error"]) ) { echo('<p style="color:red">Error:'.$_SESSION["error"]."</p>\n"); unset($_SESSION["error"]); } if ( isset($_SESSION["success"]) ) { echo('<p style="color:black">'.$_SESSION["success"]."</p>\n"); } ?> <html lang="en"> <head> <meta charset="utf-8"> <li...
<?php /** * FeePreview * * PHP version 5 * * @category Class * @package Thecodebunny\AmzSpApi * @author Swagger Codegen team * @link https://github.com/swagger-api/swagger-codegen */ /** * Selling Partner API for FBA Small And Light * * The Selling Partner API for FBA Small and Light lets you help s...
<?php // autoload.php @generated by Composer require_once __DIR__ . '/composer/autoload_real.php'; return ComposerAutoloaderInit6fb67b4018cad493ce780069016fd375::getLoader();
<?php namespace App\Models; use Illuminate\Database\Eloquent\Factories\HasFactory; use Illuminate\Database\Eloquent\Model; class Role extends Model { use HasFactory; public function users(){ return $this->belongsToMany(User::class, 'user_roles'); } }
<?php /* * Stock Module for Hipanel * * @link https://github.com/hiqdev/hipanel-module-stock * @package hipanel-module-stock * @license BSD-3-Clause * @copyright Copyright (c) 2015-2016, HiQDev (http://hiqdev.com/) */ namespace hipanel\modules\stock\models; use hipanel\base\ModelTrait; use hipanel\he...
<?php /* * Copyright (c) Atsuhiro Kubo <kubo@iteman.jp> and contributors, * All rights reserved. * * This file is part of Workflower. * * This program and the accompanying materials are made available under * the terms of the BSD 2-Clause License which accompanies this * distribution, and is available at http:/...
<?php use Illuminate\Http\Request; use Illuminate\Support\Facades\Route; /* |-------------------------------------------------------------------------- | API Routes |-------------------------------------------------------------------------- | | Here is where you can register API routes for your application. These | r...
<?php namespace common\modules\dbmanager\models; /* * Quarks Digital Solutions * Website Developed by: Nolan F. Sunico * Date Created: 4 Dec, 2018 * Time Created: 11:48:49 PM * Module: BackupModel * Project: Port_Management_System. */ /** * Description of BackupModel * * @author Programmer */ class BackupMo...
<?php namespace App\Http\Controllers; use Illuminate\Http\Request; use App\Models\Article; use App\Models\Language; use App\Models\Limitation; use App\Http\Requests\ArticleRequest; use Hash; use Carbon\Carbon; use Auth; class ArticleController extends Controller { /** * Display a listing of the resource. ...
@extends("admin.layout.base") @section('content') <div class="alert fade in hide"> <button type="button" class="close close-sm" data-dismiss="alert"> <i class="fa fa-times"></i> </button> <strong class="alert-msg"></strong> <span class="alert-tip">页面即将跳转~~</span> </div> <section class="panel"> ...
@extends('layouts.user') @section('title') @lang('home.contents') @endsection @section('content') <div class="container"> <div class="row "> @php $contents=App\content::where('subject_id',$id)->where('sectiongroup',null)->orderby('id','desc')->get(); $subject=App\subject::find($id); @e...
<?php //http://www.siosphere.com/php-development/csv-reader-and-writer namespace Foment\GestioBundle\Classes; class CSVWriter { protected $_handle = null; //file handle protected $_init = false; //have we initialized protected $_output_csv = null; //path to output csv protected $_layout = array(); //our...
<?php namespace Numbers\Users\TaskScheduler\Controller; class Jobs extends \Object\Controller\Permission { public function actionIndex() { $form = new \Numbers\Users\TaskScheduler\Form\List2\Jobs([ 'input' => \Request::input() ]); echo $form->render(); } public function actionEdit() { $form = new \Number...
<?php namespace App\Controllers\protokolle; use App\Models\protokolle\{ datenModel, protokolleModel, beladungModel, hStWegeModel, kommentareModel }; helper('nachrichtAnzeigen'); class Protokollspeichercontroller extends Protokollcontroller { const ANGEFANGEN = 'angefangen'; const FERTIG = 'fertig...
<?php use Faker\Generator as Faker; /* |-------------------------------------------------------------------------- | Model Factories |-------------------------------------------------------------------------- | | This directory should contain each of the model factory definitions for | your application. Factories pro...
<?php $__env->startSection('content'); ?> <div class="container"> <div class="row"> <div class="col-sm-4 mT-30"> <div class="card"> <div class="header-bg" width="250" height="70" id="header-blur" style=" background: url(<?php echo e(Session::get('user_avatar')); ?>);"></div> <d...
<?php namespace ResetPassword; use \shgysk8zer0\PHPAPI\{API, PDO, User, UUID, URL, Headers, HTTPException}; use \shgysk8zer0\PHPAPI\Abstracts\{HTTPStatusCodes as HTTP}; use const \Consts\{EMAILS, EMAIL_EXPIRES, PRETTY_DATE, CLIENT_URL}; use function \Functions\{get_person, get_user, mail, log_exception}; use \DateTime...
<?php /** * Copyright (c) 2017, Art of WiFi * * This file is subject to the MIT license that is bundled * with this package in the file LICENSE.md * */ /** * Controller configuration * =============================== * Copy this file to your working directory, rename it to config.php and update the section be...
<?php namespace Database\Seeders; use Illuminate\Database\Console\Seeds\WithoutModelEvents; use Illuminate\Database\Seeder; class H52MvtPointageBrutSeeder extends Seeder { /** * Run the database seeds. * * @return void */ public function run() { // } }
@extends('admin.layouts.app') @section('page-heading') <h2>Fichier Tags</h2> <ol class="breadcrumb"> <li> <a href="#">Fichier Tags</a> </li> <li> <a href="{{ route('admin.fichier-tag.index') }}">Listes</a> </li> <li class="active"> <strong>Détail</strong> </li> </ol> @en...
<p> Dear {{ $table->customer->nama }}, </p> <p> Berikut kami lampirkan Invoice mengenai <b>{{ $table->perihal }} </b>. <br> </p> <p><b>PT. Nautika Dira Tera</b><br> Epiwalk Office Suite Lt.3 Unit B309 Komp Rasuna Said Kuningan Jakarta Selatan 12940 <br> Workshop : Jl. Kri Ajak No.40C Komp AL Radio Dalam Kebayoran...
<?php namespace App\Repositories; use App\Models\TalentExpertise; use Suitcore\Repositories\SuitRepository; class TalentExpertiseRepository extends SuitRepository { /** * Countructor */ public function __construct() { $this->mainModel = new TalentExpertise; } }
<?php // This file is part of Moodle - http://moodle.org/ // // Moodle 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 3 of the License, or // (at your option) any later version. // // Moodle ...
<?php namespace CWM\BroadWorksConnector\Ocip\Models; /** * SystemOutgoingCallingPlanGetResponse * * Response to SystemOutgoingCallingPlanGetRequest. * * @see SystemOutgoingCallingPlanGetRequest * @Groups [{"id":"ab0042aa512abc10edb3c55e4b416b0b:28154","type":"sequence"}] */ class SystemOutgoingCallingPlanGetRe...
<?php namespace ryunosuke\DbMigration; use Doctrine\DBAL\Connection; use Doctrine\DBAL\Platforms\AbstractPlatform; use Doctrine\DBAL\Schema\ForeignKeyConstraint; use Doctrine\DBAL\Schema\Index; use Doctrine\DBAL\Schema\Schema; use Doctrine\DBAL\Schema\Table; use Doctrine\DBAL\Schema\Trigger; use Doctrine\DBAL\Schema\...