Our service has a demo application written in C#. The demo application installer can be downloaded after filling out a form on our website which collects the user’s email, name, etc. This application is now modified to collect some generic user statistic information, which will be sent via REST to an API and then stored ..
Category : c#
I am trying to create a desktop app using c# that will manipulate my Laravel website’s database(mysql). So I am creating API routes to act like a middleman. I actually solved my issue by changing the code but did not understand why it was not working earlier. I am new to both laravel & c# ..
Here is my Laravel code that accept file and save it to folder, this code is simplified. public function store1(Request $request) { $validator = Validator::make($request->all(), [‘file’ => ‘required|mimes:doc,docx,pdf,txt,mdb’, ]); if ($validator->fails()) { return response()->json([‘error’=>$validator->errors()], 401); } if ($files = $request->file(‘file’)) { $file = $request->file->store(‘public/documents’); return response(‘ok’); } } And Here is My C# Code private ..
Anyone translating the below code ? Muskiness chi java tum ho.. Gunning NE chi java tum ho.. Hiya jay an jay an jay an Sourc..
I need to connect a scale (rs232 port) to see the weight in my laravel application. the way I did it was through a C # console application which I call from php. what I need is to see in real time the weight changes that of the scale has, but I don’t know how ..
I am wondering if it is possible to create a centralized model/migration in Laravel to be consumed by other Laravel API projects. For instance in C#, you can create a library that handles the data models and migration which can be reference to multiple API Core projects. By doing this, once I updated the library, ..
How to build an application that will directly upload excel entries to sage? What language is more effective? I have tried using MySQL database as a middle man. But it is tedious. Sourc..
guys, one of our client want Astro application where a user can check Kundli match and his horoscope chart. Anyone can help me, the client, not want to use any APIs. Sourc..
It is My function to upload the image but the question is this why the images are not uploaded to public_html folder the images are uploaded in public folder of project. private function upload($image, $tbl){ $name = $image->getClientOriginalName(); $newName = date(‘ymdgis’).$name; $image->move(public_path().’/img’.$tbl,$newName); return $newName; } Sourc..
I am a beginner software engineer and I am working on a project of google voice-based autodialer program that can work on excel sheet but I am stuck right now don’t know the logic behind this I searched on YouTube but it is paid and for the practice purpose I cant purchased it so if ..
I am a beginner software engineer and I am working on a project of Google voice-based autodialer program that can work on Excel sheet but I am stuck right now don’t know the logic behind this. I searched on YouTube but it is paid and for the practice purpose I can’t purchase it. What can ..
I Have Laravel Application and i am trying to execute c# Application Using Php Exec() function. i prepared that c# Application for open Microsoft excel sheet and update that one.if i run manualy that c# Application its work.but if i run its from laravel, that c# application not running completely.the process is stop excel file ..
Couldn’t find anything about validating collections on the documentation. In .NET Core I can just create a Model and add some data attributes, automatically bind that list on the front end to the model and all errors will show even using jquery validation. I want to achieve the same result with Laravel For example in ..
I converted this method from C# to Laravel: C# code: using (SHA1Managed sha1 = new SHA1Managed()) { var hash = sha1.ComputeHash(Encoding.UTF8.GetBytes(input)); var sb = new StringBuilder(hash.Length * 2); foreach (byte b in hash) sb.Append(b.ToString(“X2”)); return sb.ToString(); } and in laravel: $text = hash(‘sha1’, $txt); $byte_array = unpack(‘C*’, $text); foreach ($byte_array as $b) $r .= chr($b); ..