text stringlengths 2 1.03M |
|---|
<style>
.my-custom-scrollbar {
position: relative;
height: 200px;
overflow: auto;
}
.table-wrapper-scroll-y {
display: block;
}
</style>
<div class="row">
<div class="col-12">
<div class="mb-3 card">
<div class="card-header-tab card-header">
<ul class="nav">
... |
@extends('layouts.app')
@section('content')
<section class="content-header">
<h1>
Actualización de Usuario
</h1>
</section>
<div class="content">
@include('adminlte-templates::common.errors')
<div class="box box-primary">
<div class="box-body">
... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
use DB;
class Featureserviceprovider extends Model
{
use HasFactory;
protected $table = 'featureserviceproviders';
public $timestamp = true;
} |
<?php
namespace App\Http\Controllers;
use App\Models\OrderDetail;
use Illuminate\Http\Request;
use Carbon\Carbon;
use PDF;
class OrderDetailController extends Controller
{
public function __construct()
{
$this->middleware('auth');
}
/**
* Display a listing of the resource.
*
* ... |
<?php
namespace Syno\Storm\Document;
interface TranslationInterface
{
/**
* @return string|null
*/
public function getLocale(): ?string;
/**
* @param string $locale
*/
public function setLocale(string $locale);
} |
<?php
return [
/*
|--------------------------------------------------------------------------
| Default Broadcaster
|--------------------------------------------------------------------------
|
| This option controls the default broadcaster that will be used by the
| framework when an even... |
<?php
namespace Requests\Exception\HTTP;
/**
* Exception for 504 Gateway Timeout responses
*
* @package Requests
*/
/**
* Exception for 504 Gateway Timeout responses
*
* @package Requests
*/
class _504 extends \Requests\Exception\HTTP
{
/**
* HTTP status code
*
* @var integer
*/
... |
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Behat\Service\Setter;
use Sylius\Component\Channel\Model\ChannelInterface;
/**
* @... |
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
class AddPostIdToCommentsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('comments',... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class Product extends Model
{
protected $fillable=[
'name','catagory_id','supplier_id','product_code','product_garage','product_route','product_image','buy_date','exp_date','buying_price','selling_price'
];
public function catagory(){
... |
<?php
return array(
'components' => array(
'urlManager' => array(
'rules' => array(
//
// f7
'f7/publish/download/<downloadFile>' => 'f7/publish/download',
'f7/publish/<slug>' => 'f7/publish/index',
'f7/publish/<action:(index|view|edit|save|confirm)>/<slug>/<sid>/<eid>' => 'f7/publish/<action... |
<?php
//000000003600
exit();?>
s:7:"default"; |
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>@yield('title')</title>
<!-- CustomCSS --->
<style type="text/css">
.page-break {
page-break-after: always;
}
</style>
<!-- Normalize or reset CSS with your favorite library -->
<link rel="stylesheet" hr... |
<?php
/**
* Description of Backend
*
* @author jiwei
* @update mozic
*/
class Controller_Backend extends Controller_Template {
public $template = "backend/template/template";
protected $manager_id;
protected $manager;
protected $roles;
protected $permission;
protected $config;
/**
... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Registrar extends CI_Controller{
function __construct(){
parent::__construct();
$this->load->model('registrar_login_model','reg_login');
$this->load->model('registrar_function_models/reg_add_guardian_stud_model','reg_add_recor... |
<style type="text/css">
.label-container{
position:fixed;
bottom:48px;
right:105px;
display:table;
visibility: hidden;
}
.label-text{
color:#FFF;
background:rgba(51,51,51,0.5);
display:table-cell;
vertical-align:middle;
padding:10px;
border-radius:3px;
}
.label-arrow{
... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Post;
use App\Tag;
class MasterController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index()
{
$post = new Post;
$post... |
<?php
// a PHP client library for pubsubhubbub
// as defined at http://code.google.com/p/pubsubhubbub/
// written by Josh Fraser | joshfraser.com | josh@eventvue.com
// modified by Matthias Pfefferle | notizblog.org | matthias@pfefferle.org
// Released under Apache License 2.0
/**
* a pubsubhubbub publisher
*
* @au... |
<table width="650" cellspacing="0" cellpadding="0" border="0" align="center">
<tbody>
<tr bgcolor="#F0F0E9">
<td width="40"> </td>
<td width="560" valign="top" align="left">
<table width="100%" cellspacing="0" cellpadding="0" border="0">
<tbod... |
<link rel="stylesheet" type="text/css" href="<?php echo $general_class->ben_resources('lms/multi-select.css') ?>">
<style type="text/css">
.form-control{
border-bottom: 1px solid #e9e9e9;
}
.hrline {
width: 100%;
text-align: center;
border-bottom: 1px solid #000;
line-... |
@extends('layouts.app')
@section('main_content')
<section>
<div class="container">
<div class="card" style="margin:auto;">
<img src="{{$comic->thumb}}" style="max-width:400px;" class="card-img-top" alt="...">
<div class="card-body">
<h2 class=... |
@extends('layouts.app')
@section('content')
<div class="container">
<div class="row justify-content-center">
<div class="col-md-4">
<div class="card">
<div class="card-body">
<form method="POST" action="{{ route('login') }}">
@csrf
... |
<?php
namespace JudicaelPaquet\AuthorizationBundle\tests\Annotations\Driver;
use Doctrine\Common\Annotations\Reader;
use Symfony\Component\HttpKernel\Event\FilterControllerEvent;
use JudicaelPaquet\AuthorizationBundle\Annotations;
use Symfony\Component\HttpFoundation\Response;
class AnnotationDriverTest
{
/**
... |
<?php
namespace Database\Seeders;
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class TitreSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('titres')->insert([
[
'titre'... |
<?php
/**
* GetCharactersCharacterIdAgentsResearch200OkTest
*
* PHP version 5
*
* @category Class
* @package Swagger\Client
* @author Swagger Codegen team
* @link https://github.com/swagger-api/swagger-codegen
*/
/**
* EVE Swagger Interface
*
* An OpenAPI for EVE Online
*
* OpenAPI spec version: 0... |
<?php
namespace TenantCloud\BetterReflection\Relocated\Bug1216;
use function TenantCloud\BetterReflection\Relocated\PHPStan\Analyser\assertType;
abstract class Foo
{
/**
* @var int
*/
protected $foo;
}
trait Bar
{
/**
* @var int
*/
protected $bar;
protected $untypedBar;
}
/**
... |
<?php $this->load->view('front/header') ?>
<!-- Hero section -->
<section class="hero-section">
<div class="hero-slider owl-carousel">
<div class="hs-item set-bg" data-setbg=" <?php echo base_url('assets_front/img/bg.jpg') ?>">
<!-- <div class="container">
<div class="row">
<div class="col-xl-6 c... |
<?php
/**
* Zend Framework (http://framework.zend.com/)
*
* @link http://github.com/zendframework/zf2 for the canonical source repository
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com)
* @license http://framework.zend.com/license/new-bsd New BSD License
* @package Z... |
<?php
namespace app\models;
use Yii;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use app\models\RequestOrderItem;
/**
* RequestOrderItemSearch represents the model behind the search form of `app\models\RequestOrderItem`.
*/
class RequestOrderItemSearch extends RequestOrderItem
{
/**
* {@inheritdo... |
<?php
namespace Boxalino\RealTimeUserExperience\Service\Exporter\Item;
use Boxalino\RealTimeUserExperience\Service\Exporter\Component\Product;
use Doctrine\DBAL\ParameterType;
use Shopware\Core\Defaults;
use Doctrine\DBAL\Query\QueryBuilder;
use Shopware\Core\Framework\Uuid\Uuid;
class Manufacturer extends ItemsAbstr... |
@extends('layouts.back-pages')
@section('content')
@include('layouts.partial.sidebar')
<div class="main-panel">
@include('layouts.partial.topbar')
<div class="main-content anchor-styling">
<div class="container-fluid">
<div class="row">
<div class="col-md-... |
<?php
declare(strict_types=1);
namespace AlfaAcquiring\Logger;
use Psr\Log\LoggerInterface;
use Psr\Log\LogLevel;
class SimpleFileLogger implements LoggerInterface
{
private ?string $dirPath = null;
protected function setDirPath(?string $dirPath): SimpleFileLogger
{
if (null !== $dirPath && '' ... |
<?php
namespace PhalApi;
/**
* Crypt对称加密接口
*
* @package PhalApi\Crypt
* @license http://www.phalapi.net/license GPL 协议
* @link http://www.phalapi.net/
* @author dogstar <chanzonghuang@gmail.com> 2014-12-10
*/
interface Crypt {
/**
* 对称加密
*
* @param mixed $data 等加密的数据
* @param str... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
class Migration_Add_column_in_user extends CI_Migration
{
public function __construct()
{
parent::__construct();
$this->load->dbforge();
}
/*
|-----------------------------------------------------------------... |
<?php
declare(strict_types=1);
namespace Tests\Ddrv\OpenApiGenerator\Unit\Document;
use Ddrv\OpenApiGenerator\Document\AbstractHttpMessage;
use Ddrv\OpenApiGenerator\Document\RequestBody;
use Ddrv\OpenApiGenerator\Exception\InvalidContentTypeException;
use Ddrv\OpenApiGenerator\Schema\AbstractSchema;
use Tests\Ddrv\... |
<?php
/*
* This file is part of Hifone.
*
* (c) Hifone.com <hifone@hifone.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Hifone\Handlers\Events\Photo;
use Auth;
use Hifone\Events\EventInterface;
use Hifone\Models... |
<?php
namespace Aws;
use JmesPath\Env as JmesPath;
/**
* AWS result.
*/
class Result implements ResultInterface
{
use HasDataTrait;
public function __construct(array $data = [])
{
$this->data = $data;
}
public function hasKey($name)
{
return isset($this->data[$name]);
}... |
@extends('main')
@section('title', '| Edit question')
@section('stylesheets')
{!! Html::style('css/select2.min.css') !!}
<script src="{{ URL::to('src/js/vendor/tinymce/js/tinymce/tinymce.min.js') }}"></script>
<script>
var editor_config = {
height : "120",
path_absolute : "... |
<?php
namespace App;
use Illuminate\Database\Eloquent\Model;
class CategoryPerson extends Model
{
//
} |
<?php
defined('BASEPATH') or exit('No direct script access allowed');
class Menu_model extends CI_Model
{
public function getSubMenu()
{
$query = "
SELECT `user_sub_menu`.*, `user_menu`.`menu`
FROM `user_sub_menu` JOIN `user_menu`
ON `user_sub_menu`.`menu_id` = `user_menu`.`id`
... |
<?php
namespace App\Models;
use Illuminate\Contracts\Auth\MustVerifyEmail;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Foundation\Auth\User as Authenticatable;
use Illuminate\Notifications\Notifiable;
use Laravel\Sanctum\HasApiTokens;
use App\Models\Profile;
use App\Models\Company;
class Us... |
<?php
use Illuminate\Database\Seeder;
use Illuminate\Support\Facades\DB;
class MenuTableSeeder extends Seeder
{
/**
* Run the database seeds.
*
* @return void
*/
public function run()
{
DB::table('menus')->insert([
[
'menu' => 'Dashboard',
... |
<?php
namespace Microweber\Providers;
api_expose_admin('fields/reorder');
api_expose_admin('fields/delete');
api_expose_admin('fields/make');
api_expose_admin('fields/save');
$_mw_made_default_fields_register = array();
class FieldsManager
{
public $app;
public $tables = array();
public $table = 'custom_... |
<?php
namespace App\Http\Controllers\Api;
use App\Http\Controllers\Controller;
use Illuminate\Http\Request;
use App\User;
use App\Models\ChatGroup;
use App\Models\ChatMember;
use App\Models\ChatMessage;
use App\Models\MessageReceivers;
use App\Models\FirstHiMessage;
use DB;
use Validator;
use App\Events\ChatUsersEven... |
<?php
namespace Database\Seeders;
use Illuminate\Database\Console\Seeds\WithoutModelEvents;
use Illuminate\Database\Seeder;
class DatabaseSeeder extends Seeder
{
/**
* Seed the application's database.
*
* @return void
*/
public function run()
{
// \App\Models\Products::factory... |
<?php
namespace App\Http\Middleware;
use Illuminate\Support\Facades\Auth;
use Closure;
class AdminLogin
{
/**
* Handle an incoming request.
*
* @param \Illuminate\Http\Request $request
* @param \Closure $next
* @return mixed
*/
public function handle($request, Closure $next)... |
<?php $__env->startSection('title'); ?> <?php echo e(awtTrans('الإعدادات')); ?> <?php $__env->stopSection(); ?>
<?php $__env->startSection('content'); ?>
<div class="gx-card">
<div class="gx-card-body tabs-container">
<ul class="nav nav-tabs" role="tablist">
<li class="nav-item"... |
<nav class="navbar navbar-expand-md navbar-dark navbar-laravel bg-primary">
<div class="container">
<a class="navbar-brand" href="{{ url('/') }}">
{{ config('app.name', 'Laravel') }}
</a>
<button class="navbar-toggler" type="button" data-toggle="collapse" data-tar... |
<?php
namespace App\Models;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class UserPinVerfication extends Model
{
use HasFactory;
protected $guarded = [];
public function useremailverifications()
{
return $this->hasOne(UserEmailVerification:... |
<!DOCTYPE html>
<html>
<head>
<title>JadiMasak</title>
<link href="<?php echo base_url();?>assets/css/bootstrap.css" rel='stylesheet' type='text/css' />
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="<?php echo base_url();?>assets/js/jquery.min.js"></script>
<!-- Custom Theme files -->
<lin... |
<?php
/**
* Pixflow
*/
/*-----------------------------------------------------------------------------------*/
/* Icon
/*-----------------------------------------------------------------------------------*/
global $separatorCounter;
pixflow_map(
array(
"name" => "Icon",
"base" => "md_icon",
... |
<?php
return [
/*
|-----------------------------------------------------------------
| Default Prefix
|-----------------------------------------------------------------
|
| This config option allows you to define a default prefix for
| your icons. The dash separator will be applied automat... |
<?php
use Illuminate\Database\Seeder;
use Illuminate\Database\Eloquent\Model;
use GestorGaleria\Usuario;
use GestorGaleria\Album;
use GestorGaleria\Foto;
class UsuariosSeeder extends Seeder {
public function run()
{
for ($i=0; $i < 10; $i++)
{
Usuario::create(
[
'nombre' => "usuario$i",
'email'... |
@extends('layouts.master') @section('title','Products') @section('header')@endsection @section('content')
<div class="slide">
<div class="row" style="margin: 40px">
@foreach($items as $item)
<div class="col-sm-6 col-md-3">
<div class="thumbnail" style="text-align: center">
... |
<?php
namespace Ricoa\Auth\Repositories;
use Ricoa\Auth\Models\Permission;
use Prettus\Repository\Eloquent\BaseRepository;
class PermissionRepository extends BaseRepository
{
/**
* @var array
*/
protected $fieldSearchable = [
'name',
'display_name',
'description'
];
... |
<?php
use Illuminate\Support\Facades\Auth;
use Illuminate\Support\Facades\Route;
use App\Http\Controllers\HomeController;
use App\Http\Controllers\UserController;
use App\Http\Controllers\PostController;
use App\Http\Controllers\DivisionController;
use App\Http\Controllers\ProjectController;
use App\Http\Controllers\C... |
<?php
function getParms($parmVal)
{
$value = NULL;
if(isset($_GET[$parmVal]))
{
$value = $_GET[$parmVal];
}
else if(isset($_POST[$parmVal]))
{
$value = $_POST[$parmVal];
}
return $value;
}
$hgDebug = getParms("hgdebug");
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "... |
<?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
| ... |
<?php
namespace App;
class Course extends Model
{
//protected $appends = ['periodsCount'];
public function user()
{
return $this->belongsTo(User::class);
}
public function periods()
{
return $this->hasMany(Period::class)->orderBy('day_of_week', 'ASC');
}
public funct... |
<?php
namespace App\Http\Controllers;
use App\Models\Department;
use App\Models\Designation;
use App\Models\User;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Hash;
use Illuminate\Support\Facades\Auth;
class UserController extends Controller
{
/**
* Create a new controller instance.
*
... |
<?php
namespace App\Http\Requests;
use App\Rules\ValidaCep;
use App\Services\ViaCEP;
use Illuminate\Foundation\Http\FormRequest;
class DiaristaRequest extends FormRequest
{
public function __construct(
public ViaCEP $viaCep
) {
}
/**
* Determine if the user is authorized to make this re... |
<x-mailcoach::fieldset :focus="$editing">
<x-slot name="legend">
<header class="flex items-center space-x-2">
<span class="w-6 h-6 rounded-full inline-flex items-center justify-center text-xs leading-none font-semibold bg-yellow-200 text-yellow-700">
{{ $index + 1 }}
... |
@extends('dashboard.template')
@section('content')
<style>
.btn-file {
position: relative;
overflow: hidden;
}
.btn-file input[type=file] {
position: absolute;
top: 0;
right: 0;
min-width: 100%;
min-height: 100%;
font-size: 100px;
text-align: right;
filter: alpha(opacity=0);... |
<?php
namespace app\modules\api\controllers\lottery;
use app\hejiang\ApiResponse;
use app\hejiang\BaseApiResponse;
use app\modules\api\behaviors\LoginBehavior;
use app\modules\api\models\lottery\IndexForm;
use app\modules\api\models\ShareQrcodeForm;
use app\modules\api\models\lottery\LotteryLogForm;
use app\modules\ap... |
@extends('layouts.master')
@section('tittle', 'All Banner|')
@section('main_body')
<section>
<div class="container">
<div class="row">
<div class="col-md-12 col-sm-12 ">
<div class="x_panel">
<div class="x_title">
... |
@extends('layout.master-backend')
@section('title', 'Create Product')
@section('content')
<div class="row">
<div class="col-lg-6">
<div class="card mb-4">
<div class="card-header">
<h4>General Description</h4>
</div>
<div class="c... |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\Category;
use App\Post;
use App\Tag;
use Illuminate\Support\Str;
class PostsController extends Controller
{
/**
* Display a listing of the resource.
*
* @return \Illuminate\Http\Response
*/
public function index(... |
<div class="row" ng-app="apps" ng-controller="anggaranBiayaController">
<div class="col-md-12">
<bottom class="btn btn-secondary btn-sm float-right" style="margin-bottom:12px;" ng-click="back()">
<i class="fas fa-arrow-left"></i>Kembali
</bottom>
</div>
<div class="col-md-4">
<div class="card card-danger"... |
<?php
namespace App\Http\Requests;
use Illuminate\Foundation\Http\FormRequest;
class ProductRequest extends FormRequest
{
/**
* Determine if the user is authorized to make this request.
*
* @return bool
*/
public function authorize()
{
return true;
}
/**
* Get t... |
<?php
return [
'name' => 'Redirection',
]; |
<?php
namespace App\Observers\Sys;
use Drivezy\LaravelUtility\Observers\BaseObserver;
/**
* Class UserPreferenceObserver
* @package App\Observers\Sys
*/
class UserPreferenceObserver extends BaseObserver {
/**
* @var array
*/
protected $rules = [
];
} |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use App\User;
use App\TrxQrcode;
use App\Exports\UserExport;
use App\Exports\TransactionExport;
use Maatwebsite\Excel\Facades\Excel;
use App\Http\Controllers\Controller;
use Illuminate\Support\Facades\DB;
use Illuminate\Support\Facades\Validator;
use ... |
<?php
/**
* Created by PhpStorm.
* User: jatorresdev
* Date: 18/09/16
* Time: 12:45 AM
*/
namespace App\Transformer;
use App\Comment;
use League\Fractal;
class CommentTransformer extends Fractal\TransformerAbstract {
/**
* List of resources possible to include
*
* @var array
*/
/**
... |
<?php
/*
* Opulence
*
* @link https://www.opulencephp.com
* @copyright Copyright (C) 2017 David Young
* @license https://github.com/opulencephp/Opulence/blob/master/LICENSE.md
*/
namespace Opulence\Databases\Tests\ConnectionPools\Strategies\ServerSelection;
use InvalidArgumentException;
use Opulence\Dat... |
@extends('admin1.template_admin')
@section('title', 'Editar Evento')
@section('content')
<br>
<div class="container">
<div class="card bordered z-depth-5" style="margin:0% auto;">
<div class="row">
<div class="col s12 m12 l12">
{!! Form::open(['route' => ['eventos.update',$evento], 'met... |
<?php
use Cardz\Support\MobileAppGateway\Config\Routes\RouteName;
use Cardz\Support\MobileAppGateway\Presentation\Controllers\Http\Customer\CustomerController;
use Cardz\Support\MobileAppGateway\Presentation\Controllers\Http\Workspace\CardController;
use Cardz\Support\MobileAppGateway\Presentation\Controllers\Http\Wor... |
<?php
return array(
'PagSeguro' => array(
'environment' => 'sandbox', // production, sandbox
'credentials' => array(
'email' => 'loja@cb.org.br',
'token' => array(
'production' => 'E1E09A2FA1E84E93AF194ED700F5F4DD', // ITEJ
'sandbox' => '474... |
<?php
/**
* This example fetches the set of valid ProductBiddingCategories.
*
* Copyright 2016, Google Inc. 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
*
* ... |
<?php
if(!defined("B_PROLOG_INCLUDED") || B_PROLOG_INCLUDED !== true)
{
die();
}
/**
* Bitrix vars
*
* @var array $arParams
* @var array $arResult
* @var CBitrixComponent $component
* @var CBitrixComponentTemplate $this
* @global CMain $APPLICATION
* @global CUser $USER
*/
?>
<div class="mp_wrap">
<?php
$A... |
<?php
namespace App\Filters;
interface FilterField
{
public function filter($builder, $value);
} |
<?php
/**
* Created by PhpStorm.
* User: wfredrickson
* Date: 2/25/2015
* Time: 9:29 PM
*/
namespace Appointment\Model;
use Zend\InputFilter\InputFilter;
use Zend\InputFilter\InputFilterAwareInterface;
use Zend\InputFilter\InputFilterInterface;
use Zend\InputFilter\Factory as InputFactory;
class Exam implement... |
<?php
namespace App\Models\AboutUs;
use Illuminate\Database\Eloquent\Factories\HasFactory;
use Illuminate\Database\Eloquent\Model;
class CoreValues extends Model
{
use HasFactory;
} |
<?php
namespace App\Http\Controllers;
use Illuminate\Http\Request;
use Illuminate\Support\Facades\Validator;
use App\Models\Blog;
use App\Http\Resources\BlogResource;
use Illuminate\Support\Facades\Auth;
use App\Http\Requests\BlogCreateRequest;
class BlogController extends Controller
{
/**
* @OA\Get(
*... |
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>SAC | Data Karyawan</title>
<!-- Tell the browser to be responsive to screen width -->
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-... |
<?php
namespace App\Http\Controllers;
class PetProfileController extends Controller
{
public function create()
{
return view('pet.create');
}
public function update(\App\Models\Pet $pet)
{
$this->authorize('update', $pet);
return view('pet.update', compact('pet'));
}
} |
<?php
namespace App\Http\Controllers;
use App\Borrowing;
use App\User;
use App\Borrowing_History;
use Illuminate\Http\Request;
class UserController extends Controller
{
//
public function index()
{
$users = User::all();
//print_r($users[3]);
//$users->get(0)->username;
//ec... |
<main>
<?php echo $__env->yieldContent('main'); ?>
</main><?php /**PATH C:\laragon\www\poetcircle\resources\views/includes/main.blade.php ENDPATH**/ ?> |
<?php
declare(strict_types=1);
/*
* This file has been auto generated by Jane,
*
* Do no edit it directly.
*/
namespace Docker\API\Normalizer;
use Jane\JsonSchemaRuntime\Normalizer\CheckArray;
use Jane\JsonSchemaRuntime\Reference;
use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface;
use Symfo... |
<?php
namespace App\Model;
use Illuminate\Database\Eloquent\Model;
class QaecmsSinglePage extends Model
{
protected $fillable = ['title','name','content','status'];
} |
<?php
declare(strict_types=1);
namespace App\Tests\Behat\Context\Ui\Frontend;
use Behat\Behat\Context\Context;
class HomepageContext implements Context
{
} |
<?php
use backend\models\User;
use yii\helpers\Html;
use yii\widgets\DetailView;
/* @var $this yii\web\View */
/* @var $model common\models\JobCategories */
$this->title = $model->name;
$this->params['breadcrumbs'][] = ['label' => 'Job Categories', 'url' => ['index']];
$this->params['breadcrumbs'][] = $this->title;
... |
<?php $this->load->view('public/header.php') ?>
<body style="max-width:640px;">
<div id="pjax-container" style="padding-bottom: 60px">
<div class="con">
<div class="goods" style="margin-bottom: 0rem;">
<div class="ect-bg">
<span id="top"></span>
... |
<!doctype html>
<html class="no-js" lang="">
<head>
<title>Zabuun - Learn Egyptian Arabic for English speakers</title>
<meta name="description" content="">
<?php include $_SERVER['DOCUMENT_ROOT'].'/layout/head.php';?>
</head>
<body>
<?php include $_SERVER['DOCUMENT_ROOT'].'/layout/ie8.php';?>
<?php include... |
<?php
defined('BASEPATH') OR exit('No direct script access allowed');
/**
* Class Forms_model
* Contains all the queries which are related Forms Module.
*/
class Employeeimportlisting_model extends CI_Model {
public function __construct() {
parent::__construct();
$this->DB_ReadOnly = $this->l... |
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class CreateFilesTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('files', function ... |
<?php
namespace Modera\MJRSecurityIntegrationBundle\Contributions;
use Modera\SecurityBundle\Security\Authenticator;
use Sli\ExpanderBundle\Ext\ContributorInterface;
use Symfony\Component\Security\Core\Authentication\Token\Storage\TokenStorageInterface;
use Modera\MjrIntegrationBundle\Config\CallbackConfigMerger;
/*... |
<?php
namespace App\Admin\Controllers;
use App\Models\traffic_mediums;
use Encore\Admin\Controllers\AdminController;
use Encore\Admin\Form;
use Encore\Admin\Grid;
use Encore\Admin\Show;
class traffic_mediumsController extends AdminController
{
/**
* Title for current resource.
*
* @var string
... |
<?php
use models\Sys;
ob_start();
error_reporting(11);
define('__HOST__', $_SERVER['HTTP_HOST'], true);
define("__WEBROOT__", dirname(__FILE__), true);
function autoload($class) {
if ($class) {
$file = __WEBROOT__ . '/' . str_replace('\\', '/', $class);
$file ... |
<?php
/**
* ALIPAY API: alipay.fund.trans.toaccount.transfer request
*
* @author auto create
* @since 1.0, 2017-04-24 16:54:57
*/
class AlipayFundTransToaccountTransferRequest
{
/**
* 单笔转账到支付宝账户接口
**/
private $bizContent;
private $apiParas = array();
private $terminalType;
private $terminalInfo;
privat... |
@extends('layouts.app')
@section('title', $title.' - K700 Азия')
@section('description', $description)
@section('content')
<div class="ui container" style="padding: 30px 0;">
<div class="ui header">
<div class="sub header">
<div class="ui breadcrumb">
<div cl... |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.