skip to Main Content

Why I can not call Implementation method from library class? – Laravel

In laravel 9 app I created class app/Implementations/LocalStorageUploadedFileManagement.php : <?php namespace AppImplementations; use AppInterfacesUploadedFileManagement; ... use InterventionImageFacadesImage as Image; class LocalStorageUploadedFileManagement implements UploadedFileManagement { ... public function getImageFileDetails(string $itemId, string $image = null, string $itemUploadsDirectory = '', bool $skipNonExistingFile =…

VIEW QUESTION

Laravel SOAP request call

I'm looking to get access to a specific API (found here: https://jigsaw.w3.org/css-validator/manual.html#api), however this is a SOAP api and I've never worked with SOAP. So I install this package: https://codedredd.github.io/laravel-soap/ and I try a test call. It looks like this:…

VIEW QUESTION

Disable dropdown in Laravel Blade

I have this dropdown i want to make it read only or disable {{ Form::select('name[]',$names,$name : '' ,['class'=>'form-control name input_fields','readonly'=>true,'id'=>'name']) }} tried disabled also {{ Form::select('name[]',$names,$name : '' ,['class'=>'form-control name input_fields','disabled'=>true,'id'=>'name']) }} but i want to disable options only the…

VIEW QUESTION
Back To Top
Search