11 lines
227 B
PHP
11 lines
227 B
PHP
@extends('admin.master')
|
|
@section("title", get("title"))
|
|
<?php $type = get("type");
|
|
$id = "summary";
|
|
?>
|
|
|
|
@section('content')
|
|
@if(Hash::check($type, get("hash")))
|
|
@includeIf("admin.type.$type")
|
|
@endif
|
|
@endsection
|