107 lines
2.7 KiB
PHP
107 lines
2.7 KiB
PHP
<?php
|
|
|
|
namespace Modules\Branch\Http\Controllers;
|
|
|
|
use App\Http\Controllers\Controller;
|
|
use Illuminate\Http\Request;
|
|
use Modules\Branch\Entities\Branch;
|
|
use App\Models\User;
|
|
|
|
class BranchController extends Controller
|
|
{
|
|
/**
|
|
* Display a listing of the resource.
|
|
*/
|
|
public function index()
|
|
{
|
|
$branches = Branch::latest()->paginate(10);
|
|
return view('branch::index', compact('branches'));
|
|
}
|
|
|
|
/**
|
|
* Show the form for creating a new resource.
|
|
*/
|
|
public function create()
|
|
{
|
|
return view('branch::create');
|
|
}
|
|
|
|
/**
|
|
* Store a newly created resource in storage.
|
|
*/
|
|
public function store(Request $request)
|
|
{
|
|
$request->validate([
|
|
'name' => 'required|string|max:255',
|
|
'address' => 'required|string',
|
|
'phone' => 'required|string|max:20',
|
|
'email' => 'required|email|max:255',
|
|
'is_active' => 'required|boolean'
|
|
]);
|
|
|
|
Branch::create($request->all());
|
|
|
|
return redirect()->route('branch.index')
|
|
->with('success', 'Branch created successfully.');
|
|
}
|
|
|
|
/**
|
|
* Display the specified resource.
|
|
*/
|
|
public function show(Branch $branch)
|
|
{
|
|
return view('branch::show', compact('branch'));
|
|
}
|
|
|
|
/**
|
|
* Show the form for editing the specified resource.
|
|
*/
|
|
public function edit(Branch $branch)
|
|
{
|
|
return view('branch::edit', compact('branch'));
|
|
}
|
|
|
|
/**
|
|
* Update the specified resource in storage.
|
|
*/
|
|
public function update(Request $request, Branch $branch)
|
|
{
|
|
$request->validate([
|
|
'name' => 'required|string|max:255',
|
|
'address' => 'required|string',
|
|
'phone' => 'required|string|max:20',
|
|
'email' => 'required|email|max:255',
|
|
'is_active' => 'required|boolean',
|
|
]);
|
|
|
|
$branch->update($request->all());
|
|
|
|
return redirect()->route('branch.index')
|
|
->with('success', 'Branch updated successfully.');
|
|
}
|
|
|
|
/**
|
|
* Remove the specified resource from storage.
|
|
*/
|
|
public function destroy(Branch $branch)
|
|
{
|
|
$branch->delete();
|
|
|
|
return redirect()->route('branch.index')
|
|
->with('success', 'Branch deleted successfully.');
|
|
}
|
|
|
|
public function switchBranch($branchId)
|
|
{
|
|
$branch = Branch::findOrFail($branchId);
|
|
|
|
// Update user's active branch
|
|
auth()->user()->update(['active_branch_id' => $branch->id]);
|
|
|
|
// Store in session
|
|
session(['branch_id' => $branch->id]);
|
|
|
|
|
|
return redirect()->back()->with('success', 'Branch switched successfully to ' . $branch->name);
|
|
}
|
|
}
|