This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\User; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Validator; | |
use Illuminate\Foundation\Auth\RegistersUsers; | |
use App\Estado; | |
use Illuminate\Support\Facades\Auth; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('adminlte::page') | |
@section('title', 'Museu Virtual') | |
<link href="{{ asset('css/customize.css') }}" rel="stylesheet" type="text/css" > | |
@section('content') | |
<h1 align="center" >Usuarios</h1> | |
<div class="box-tools col-md-6" id="header"> | |
<form role="form" action="{{ route('usuario.pesquisar') }}" method="POST" > |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use App\User; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Validator; | |
use Illuminate\Foundation\Auth\RegistersUsers; | |
use App\Estado; | |
use Illuminate\Support\Facades\Auth; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('adminlte::page') | |
@section('title', 'Museu Virtual') | |
<script type="text/javascript"> | |
function validarSenha(){ | |
password = document.f1.password.value | |
password_confirmation = document.f1.password_confirmation.value | |
if (password == password_confirmation) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use App\Publicacao; | |
use App\User; | |
use App\Categoria; | |
use Illuminate\Support\Facades\DB; | |
use Storage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use App\Publicacao; | |
use App\User; | |
use App\Categoria; | |
use Illuminate\Support\Facades\DB; | |
use Storage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use App\Publicacao; | |
use App\User; | |
use App\Categoria; | |
use Illuminate\Support\Facades\DB; | |
use Storage; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@extends('layouts.app') | |
@section('content') | |
<script src="{{ asset('js/menssagem.js') }}"></script> | |
<h1 align="center" >Publicacões</h1> | |
@if (Auth::user()->tipousuario == 1) | |
@forelse ($publicacao->slice(0,1) as $publicacoes) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use App\Publicacao; | |
use App\User; | |
use Illuminate\Support\Facades\DB; | |
use Storage; | |
use File; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Http\Controllers; | |
use Illuminate\Http\Request; | |
use Illuminate\Support\Facades\Validator; | |
use Illuminate\Foundation\Auth\RegistersUsers; | |
use App\User; | |
use App\Estado; | |
use App\Relacao; |
NewerOlder