Removed Leauge CSV package, updated composer
Just some quick maintenance to keep everything lean by removing stuff that is no longer needed and grabbing the latest.
This commit is contained in:
parent
44cd545b37
commit
973b02af61
3 changed files with 271 additions and 306 deletions
|
@ -9,8 +9,7 @@
|
||||||
"guzzlehttp/guzzle": "^7.2",
|
"guzzlehttp/guzzle": "^7.2",
|
||||||
"laravel/framework": "^10.10",
|
"laravel/framework": "^10.10",
|
||||||
"laravel/sanctum": "^3.2",
|
"laravel/sanctum": "^3.2",
|
||||||
"laravel/tinker": "^2.8",
|
"laravel/tinker": "^2.8"
|
||||||
"league/csv": "^9.0"
|
|
||||||
},
|
},
|
||||||
"require-dev": {
|
"require-dev": {
|
||||||
"fakerphp/faker": "^1.9.1",
|
"fakerphp/faker": "^1.9.1",
|
||||||
|
|
571
composer.lock
generated
571
composer.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -31,11 +31,10 @@
|
||||||
<h2>Recent Updates</h2>
|
<h2>Recent Updates</h2>
|
||||||
@foreach($recent as $location)
|
@foreach($recent as $location)
|
||||||
<a class="list-link" role="listitem" href="/location/{{$location->uuid}}">
|
<a class="list-link" role="listitem" href="/location/{{$location->uuid}}">
|
||||||
|
<span>{{$location->block_count}}</span>
|
||||||
@if($location->rating == 'silence')
|
@if($location->rating == 'silence')
|
||||||
|
|
||||||
<img class="menu-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
<img class="menu-icon" src="/assets/images/global/status-silence.svg" title="silenced" />
|
||||||
@else
|
@else
|
||||||
<span>{{$location->block_count}}</span>
|
|
||||||
<img class="menu-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
<img class="menu-icon" src="/assets/images/global/status-suspend.svg" title="suspended" />
|
||||||
@endif
|
@endif
|
||||||
<label>{{$location->name}}</label>
|
<label>{{$location->name}}</label>
|
||||||
|
|
Loading…
Reference in a new issue