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\Livewire\Admin; | |
use App\Models\StudentRecord; | |
use App\Models\SubgradeSubjectTeacher; | |
use App\Models\User; | |
use App\Traits\LivewireTraits\SubjectResultApprovalTrait; | |
use Livewire\Attributes\On; | |
use Livewire\Component; |
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\Livewire\Admin; | |
use App\Models\AcademicSession; | |
use App\Models\StudentResult; | |
use App\Models\SubGrade; | |
use App\Models\Term; | |
use App\Models\User; | |
use InvalidArgumentException; |
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
--- | |
apiVersion: v1 | |
kind: ConfigMap | |
metadata: | |
name: laravel-config | |
namespace: default | |
data: | |
WWWGROUP: "${WWWGROUP}" | |
WWWUSER: "${WWWUSER}" | |
LARAVEL_SAIL: "1" |
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
$okoros = [ | |
// james okoro | |
'james' => [ | |
'first_name' => 'james', | |
'age' => 54, | |
'nickname' => 'jj', | |
'gender' => 'male', | |
"children" => [ |
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
.bgimage { | |
width:100%; | |
height:500px; | |
background: url('https://images.unsplash.com/photo-1438109491414-7198515b166b?q=80&fm=jpg&s=cbdabf7a79c087a0b060670a6d79726c'); | |
background-repeat: no-repeat; | |
background-position: center; | |
background-size:cover; | |
background-attachment: fixed; | |
} |