This file contains hidden or 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 | |
| declare(strict_types=1); | |
| namespace App\Filament\Clusters\Management\Pages; | |
| use App\Models\Management\Opportunity; | |
| use BackedEnum; | |
| use Exception; | |
| use Filament\Actions\CreateAction; |
This file contains hidden or 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 | |
| # Script to switch between Laravel project branches (3.x and 4.x) with composer dependency update | |
| # Handles git branch switching, composer lock cleanup, and composer install | |
| # Color codes for output | |
| RED='\033[0;31m' | |
| GREEN='\033[0;32m' | |
| YELLOW='\033[1;33m' | |
| NC='\033[0m' # No Color |
This file contains hidden or 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 DataLens\Casts; | |
| use Illuminate\Contracts\Support\Arrayable; | |
| use Illuminate\Support\Facades\Crypt; | |
| use Spatie\LaravelData\Casts\Cast; | |
| use Spatie\LaravelData\Casts\Uncastable; | |
| use Spatie\LaravelData\Contracts\BaseData; | |
| use Spatie\LaravelData\Contracts\BaseDataCollectable; |
This file contains hidden or 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 App\Actions\LicenseActivate; | |
| use App\Contracts\LicenseActivates; | |
| use App\Models\License; | |
| use Illuminate\Database\Eloquent\Model; | |
| use Illuminate\Http\Request; | |
| use Illuminate\Support\Facades\Auth; |
This file contains hidden or 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
| # stop script on error signal | |
| set -e | |
| SITE=${FORGE_SITE_PATH#"/home/forge/"} | |
| DEPL="/home/forge/deployments/${SITE}" | |
| # create directory and any intermediate directories if don't exist | |
| mkdir -p ${DEPL} | |
| CUR="/home/forge/${SITE}" |
This file contains hidden or 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
| ββ src/ | |
| β ββ core/ | |
| β ββ modules/ | |
| β β ββ News/ | |
| β β β ββ Components/ | |
| β β β ββ Pages/ | |
| β β β ββ Routes/ | |
| β β β ββ Services/ | |
| β β β β ββ news.api.js | |
| β β β β ββ news.services.js |