{{ $title }}
10 |Don't have an account? Register a new one.
11 |├── public
└── .gitkeep
├── storage
└── .gitkeep
├── vendor
└── .gitkeep
├── themes
├── default
│ ├── assets
│ │ └── .gitkeep
│ ├── layouts
│ │ └── __default__.phtml
│ ├── pages
│ │ └── __default__.phtml
│ └── partials
│ │ └── __default__.phtml
└── velox
│ ├── assets
│ ├── css
│ │ └── style.css
│ ├── images
│ │ ├── favicon.png
│ │ ├── velox.png
│ │ └── velox-logo.png
│ └── js
│ │ └── script.js
│ ├── partials
│ ├── components
│ │ ├── paragraph.phtml
│ │ ├── heading.phtml
│ │ ├── link.phtml
│ │ ├── button.phtml
│ │ ├── image.phtml
│ │ └── figure.phtml
│ ├── page
│ │ ├── header.phtml
│ │ └── footer.phtml
│ ├── meta
│ │ ├── scripts.phtml
│ │ ├── stylesheets.phtml
│ │ └── metadata.phtml
│ ├── text.phtml
│ ├── text-image.phtml
│ ├── hero.phtml
│ ├── message.phtml
│ ├── form.phtml
│ └── includes
│ │ └── navigation.phtml
│ ├── layouts
│ ├── base.phtml
│ ├── simple.phtml
│ └── main.phtml
│ └── pages
│ ├── error
│ ├── 401.phtml
│ ├── 403.phtml
│ ├── 500.phtml
│ ├── 404.phtml
│ └── 405.phtml
│ ├── dump.phtml
│ ├── contact.phtml
│ ├── users
│ ├── login.phtml
│ ├── index.phtml
│ └── register.phtml
│ ├── home.phtml
│ └── persons
│ ├── create.phtml
│ ├── show.phtml
│ ├── edit.phtml
│ └── index.phtml
├── .gitignore
├── index.php
├── bin
├── config-cache
├── cache-clear
├── config-dump
├── app-serve
└── app-mirror
├── .editorconfig
├── bootstrap
├── additional.php
├── intellisense.php
├── autoload.php
└── loader.php
├── config
├── auth.php
├── database.php
├── theme.php
├── router.php
├── session.php
├── data.php
├── cli.php
├── view.php
└── global.php
├── LICENSE
├── app
├── Model
│ └── Person.php
└── Controller
│ ├── DefaultController.php
│ ├── UsersController.php
│ └── PersonsController.php
├── functions
└── html.php
├── .htaccess.dist
├── composer.json
├── includes
├── events
│ └── system.php
└── routes
│ └── web.php
└── classes
├── Frontend
├── Data.php
├── View
│ └── Compiler.php
└── Path.php
└── Backend
├── Session
├── CSRF.php
└── Flash.php
├── Event.php
├── Model
└── Element.php
├── Session.php
├── Exception.php
├── Config.php
├── Controller.php
├── Database.php
└── Auth.php
/public/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/storage/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/vendor/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/themes/default/assets/.gitkeep:
--------------------------------------------------------------------------------
1 |
--------------------------------------------------------------------------------
/themes/velox/assets/css/style.css:
--------------------------------------------------------------------------------
1 | @import url('https://cdn.jsdelivr.net/npm/bulma@0.9.1/css/bulma.min.css');
--------------------------------------------------------------------------------
/themes/velox/partials/components/paragraph.phtml:
--------------------------------------------------------------------------------
1 | = HTML::p(nb($content), [
2 | 'class' => $class ?? false,
3 | ]) ?>
4 |
--------------------------------------------------------------------------------
/themes/velox/assets/images/favicon.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarwanAlsoltany/velox/HEAD/themes/velox/assets/images/favicon.png
--------------------------------------------------------------------------------
/themes/velox/assets/images/velox.png:
--------------------------------------------------------------------------------
https://raw.githubusercontent.com/MarwanAlsoltany/velox/HEAD/themes/velox/assets/images/velox.png
--------------------------------------------------------------------------------
/themes/velox/partials/page/header.phtml:
--------------------------------------------------------------------------------
1 |
3 | VELOX by Marwan Al-Soltany.
4 | The source code is licensed under MIT license.
5 |
Check out the project on GitHub
7 |© = Data::get('meta.copyrightText', date('Y')) ?>
8 |Don't have an account? Register a new one.
11 |You are currently logged in as {{ $user->username }}
27 |You won't see this page unless you are authenticated.
28 |Try logging out and visiting the following URL: {{ Path::currentUrl() }}.
Would you like to delete your account?
32 | 33 |{{ $person->name }}
15 || Id | 21 |{{ $person->id }} | 22 |
|---|---|
| Name | 25 |{{ $person->name }} | 26 |
| Age | 29 |{{ $person->age }} | 30 |
| Username | 33 |{{ $person->username }} | 34 |
| {{ $person->email }} | 38 ||
| Address | 41 |{{ $person->address }} | 42 |
| Company | 45 |{{ $person->company }} | 46 |
| Id | 41 |Name | 42 |Age | 43 |Username | 44 |Address | 46 |Company | 47 |Action | 48 ||
{{ $person->id }} |
54 | {{ $person->name }} | 55 |{{ $person->age }} | 56 |{{ $person->username }} | 57 |{{ $person->email }} | 58 |{{ $person->address }} | 59 |{{ $person->company }} | 60 |61 | 76 | | 77 |
No persons found.
83 |84 |
To create a new one, click here.
85 | {! @endif !} 86 |