mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-11-03 23:59:09 +00:00 
			
		
		
		
	Added/Updated validation on store and update Updated update method in shared, server, seedboxes, reseller and misc
		
			
				
	
	
		
			60 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
	
		
			1.5 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
<?php
 | 
						|
 | 
						|
namespace App\Http\Controllers;
 | 
						|
 | 
						|
use App\Models\DNS;
 | 
						|
use App\Models\IPs;
 | 
						|
use App\Models\Reseller;
 | 
						|
use App\Models\Server;
 | 
						|
use App\Models\Shared;
 | 
						|
use Illuminate\Http\Request;
 | 
						|
use Illuminate\Support\Facades\DB;
 | 
						|
use Illuminate\Support\Str;
 | 
						|
 | 
						|
class IPsController extends Controller
 | 
						|
{
 | 
						|
    public function index()
 | 
						|
    {
 | 
						|
        $ips = IPs::all();
 | 
						|
        return view('ips.index', compact(['ips']));
 | 
						|
    }
 | 
						|
 | 
						|
    public function create()
 | 
						|
    {
 | 
						|
        $Servers = Server::all();
 | 
						|
        $Shareds = Shared::all();
 | 
						|
        $Resellers = Reseller::all();
 | 
						|
        return view('ips.create', compact(['Servers', 'Shareds', 'Resellers']));
 | 
						|
    }
 | 
						|
 | 
						|
    public function store(Request $request)
 | 
						|
    {
 | 
						|
        $request->validate([
 | 
						|
            'address' => 'required|ip|min:2',
 | 
						|
            'ip_type' => 'required|string|size:4',
 | 
						|
            'service_id' => 'required|string'
 | 
						|
        ]);
 | 
						|
 | 
						|
        $ip_id = Str::random(8);
 | 
						|
 | 
						|
        IPs::create([
 | 
						|
            'id' => $ip_id,
 | 
						|
            'address' => $request->address,
 | 
						|
            'is_ipv4' => ($request->ip_type === 'ipv4') ? 1 : 0,
 | 
						|
            'service_id' => $request->service_id,
 | 
						|
            'active' => 1
 | 
						|
        ]);
 | 
						|
 | 
						|
        return redirect()->route('IPs.index')
 | 
						|
            ->with('success', 'IP address created Successfully.');
 | 
						|
    }
 | 
						|
 | 
						|
    public function destroy(IPs $IP)
 | 
						|
    {
 | 
						|
        $items = IPs::find($IP->id);
 | 
						|
        $items->delete();
 | 
						|
 | 
						|
        return redirect()->route('IPs.index')
 | 
						|
            ->with('success', 'IP address was deleted Successfully.');
 | 
						|
    }
 | 
						|
}
 |