/app
├── /Application
| ├── /Exceptions
| ├── /Middlewares
| ├── /Providers
| ├── /Requests
├── /Domain
| ├── /MyDomainA
| | ├── /Contracts
View Envoy.blade.php
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
@servers(['web' => $user.'@'.$host,'localhost' => '127.0.0.1']) | |
@setup | |
// Sanity checks | |
if (empty($host)) { | |
exit('ERROR: $host var empty or not defined'); | |
} | |
if (empty($user)) { | |
exit('ERROR: $user var empty or not defined'); | |
} |
View .eslintignore
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
bower_components/ | |
build/Release/ | |
node_modules/ | |
jspm_packages/ | |
typings/ | |
.next/ | |
.nuxt/ | |
dist/ | |
/vendor/libs/**/*.js |
View laravel_deploy.sh
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
#!/bin/bash | |
mkdir -p deploy_log | |
file_name=deploy_log/deploy_$(date "+%Y_%m_%d_%H_%M_%S") | |
echo 'Deployment Started . . . . .' |& tee $file_name | |
chown -R www-data:www-data storage/ | |
chmod -R 777 storage/ | |
chown -R www-data:www-data bootstrap/cache/ |
View tailwind-rtl.js
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
function ({ addVariant }) { | |
addVariant('rtl', ({ modifySelectors, separator }) => { | |
modifySelectors(({ className }) => { | |
return `[dir="rtl"] .rtl${separator}${className}` | |
}) | |
}) | |
} |
View laravel-ddd-approach.md
View AppServiceProvider.php
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\Providers; | |
use Illuminate\Support\Collection; | |
use Illuminate\Pagination\LengthAwarePaginator; | |
class AppServiceProvider extends ServiceProvider | |
{ | |
public function boot() |
View index.html
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
<html> | |
<head></head> | |
<body> | |
<form> | |
<input id="candidate_firstname" name="firstname" required="required" class="gui-input" dir="rtl" type="text" /> | |
<input id="candidate_lastname" name="lastname" required="required" class="gui-input" dir="rtl" type="text" /> | |
</form> | |
<script type="text/javascript"> | |
function restrictInputOtherThanArabic($field) |
View axios-catch-error.js
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
/* | |
* Handling Errors using async/await | |
* Has to be used inside an async function | |
*/ | |
try { | |
const response = await axios.get('https://your.site/api/v1/bla/ble/bli'); | |
// Success 🎉 | |
console.log(response); | |
} catch (error) { | |
// Error 😨 |
NewerOlder